diff options
author | Louis Sautier <sbraz@gentoo.org> | 2020-03-01 21:31:47 +0100 |
---|---|---|
committer | Louis Sautier <sbraz@gentoo.org> | 2020-03-01 21:39:11 +0100 |
commit | d70f1b7ddbe472027df53461c84a7a970c3ba0cb (patch) | |
tree | 8d7a0a2cda4619a771b7391ec0efe1a0bf01acaa /app-admin/supervisor | |
parent | app-admin/supervisor: bump to 4.1.0, add Py3.8, improvements (diff) | |
download | gentoo-d70f1b7ddbe472027df53461c84a7a970c3ba0cb.tar.gz gentoo-d70f1b7ddbe472027df53461c84a7a970c3ba0cb.tar.bz2 gentoo-d70f1b7ddbe472027df53461c84a7a970c3ba0cb.zip |
app-admin/supervisor: remove unused files
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'app-admin/supervisor')
-rw-r--r-- | app-admin/supervisor/files/conf.d | 4 | ||||
-rw-r--r-- | app-admin/supervisor/files/init.d | 27 | ||||
-rw-r--r-- | app-admin/supervisor/files/init.d-r1 | 12 |
3 files changed, 0 insertions, 43 deletions
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" |