diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-04-25 17:53:59 +0200 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2020-04-25 11:02:20 -0500 |
commit | bc6fb37b4e2e69be175c15855f62d91691a1beed (patch) | |
tree | 11fada01f15f134638363a1b696825c0727a12dc /www-apps | |
parent | profiles: add positional / posix_ipc to be removed in bug 718996 (diff) | |
download | gentoo-bc6fb37b4e2e69be175c15855f62d91691a1beed.tar.gz gentoo-bc6fb37b4e2e69be175c15855f62d91691a1beed.tar.bz2 gentoo-bc6fb37b4e2e69be175c15855f62d91691a1beed.zip |
www-apps/novnc: remove unused files
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/novnc/files/noVNC.confd | 4 | ||||
-rw-r--r-- | www-apps/novnc/files/noVNC.initd | 30 |
2 files changed, 0 insertions, 34 deletions
diff --git a/www-apps/novnc/files/noVNC.confd b/www-apps/novnc/files/noVNC.confd deleted file mode 100644 index 50ddb5cc3e57..000000000000 --- a/www-apps/novnc/files/noVNC.confd +++ /dev/null @@ -1,4 +0,0 @@ -FLAG_FILE=/etc/nova/nova.conf -WEB_ROOT=/opt/noVNC -LOG_PATH=/var/log/noVNC -CERT_FILE=/opt/noVNC/self.pem diff --git a/www-apps/novnc/files/noVNC.initd b/www-apps/novnc/files/noVNC.initd deleted file mode 100644 index 93d87486ad4d..000000000000 --- a/www-apps/novnc/files/noVNC.initd +++ /dev/null @@ -1,30 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# -# Author: Cor Cornelisse <corcornelisse@gmail.com> - -pidfile="/var/run/${SVCNAME}.pid" -command="/usr/bin/nova-novncproxy" -command_args="--flagfile=${FLAG_FILE} --cert=${CERT_FILE} --web ${WEB_ROOT}" -command_background="yes" -start_stop_daemon_args="--stdout ${LOG_PATH}/${SVCNAME}.log --stderr ${LOG_PATH}/${SVCNAME}.err" - - -depend() { - need net -} - -checkconfig() { - checkpath -d -m 0750 /var/log/noVNC - if [ ! -r /etc/conf.d/${SVCNAME} ]; then - eerror "No config file found: /etc/conf.d/${SVCNAME}" - return 1 - fi - return 0 -} - - -start_pre() { - checkconfig || return $? -} |