www-apps/novnc: remove unused files
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Sat, 25 Apr 2020 15:53:59 +0000 (17:53 +0200)
committerMatthew Thode <prometheanfire@gentoo.org>
Sat, 25 Apr 2020 16:02:20 +0000 (11:02 -0500)
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>
www-apps/novnc/files/noVNC.confd [deleted file]
www-apps/novnc/files/noVNC.initd [deleted file]

diff --git a/www-apps/novnc/files/noVNC.confd b/www-apps/novnc/files/noVNC.confd
deleted file mode 100644 (file)
index 50ddb5c..0000000
+++ /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 (file)
index 93d8748..0000000
+++ /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 $?
-}