app-admin/supervisor: remove unused files
authorLouis Sautier <sbraz@gentoo.org>
Sun, 1 Mar 2020 20:31:47 +0000 (21:31 +0100)
committerLouis Sautier <sbraz@gentoo.org>
Sun, 1 Mar 2020 20:39:11 +0000 (21:39 +0100)
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
app-admin/supervisor/files/conf.d [deleted file]
app-admin/supervisor/files/init.d [deleted file]
app-admin/supervisor/files/init.d-r1 [deleted file]

diff --git a/app-admin/supervisor/files/conf.d b/app-admin/supervisor/files/conf.d
deleted file mode 100644 (file)
index 922f4ce..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-# /etc/conf.d/supervisord
-
-# Options to pass to the supervisord process
-SUPD_OPTS=""
diff --git a/app-admin/supervisor/files/init.d b/app-admin/supervisor/files/init.d
deleted file mode 100644 (file)
index bf8d00c..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-checkconfig() {
-       if [ ! -f /etc/supervisord.conf ] ; then
-               eerror "Please create /etc/supervisord.conf:"
-               eerror "echo_supervisord_conf >> /etc/supervisord.conf"
-               return 1
-       fi
-       return 0
-}
-
-start() {
-       checkconfig || return $?
-       ebegin "Starting supervisord"
-       start-stop-daemon --start \
-               --exec /usr/bin/supervisord -b --pidfile /var/run/supervisord.pid \
-               -- -n ${SUPD_OPTS}
-       eend $?
-}
-
-stop() {
-       ebegin "Stopping supervisord"
-       start-stop-daemon --stop --pidfile /var/run/supervisord.pid
-       eend $?
-}
diff --git a/app-admin/supervisor/files/init.d-r1 b/app-admin/supervisor/files/init.d-r1
deleted file mode 100644 (file)
index f22f49d..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-description="client/server system that allows its users to monitor and control a number of processes on UNIX-like operating systems"
-
-command="/usr/bin/supervisord"
-pidfile="/var/run/supervisord.pid"
-command_args="--nodaemon --pidfile ${pidfile} ${SUPD_OPTS}"
-command_background="yes"
-
-required_files="/etc/supervisord.conf"