From: Louis Sautier Date: Sun, 1 Mar 2020 20:31:47 +0000 (+0100) Subject: app-admin/supervisor: remove unused files X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d70f1b7ddbe472027df53461c84a7a970c3ba0cb;p=gentoo.git app-admin/supervisor: remove unused files Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Louis Sautier --- diff --git a/app-admin/supervisor/files/conf.d b/app-admin/supervisor/files/conf.d deleted file mode 100644 index 922f4ce4132f..000000000000 --- a/app-admin/supervisor/files/conf.d +++ /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 index bf8d00c9517d..000000000000 --- a/app-admin/supervisor/files/init.d +++ /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 index f22f49d54947..000000000000 --- a/app-admin/supervisor/files/init.d-r1 +++ /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"