From: root Date: Mon, 23 May 2016 12:31:06 +0000 (+0200) Subject: committing changes in /etc after emerge run X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=d6654a122fb2e8c5b992a146e8d52189d3d58016;p=config%2Fweimar%2Fetc.git committing changes in /etc after emerge run Package changes: +app-admin/supervisor-3.1.3 --- diff --git a/.etckeeper b/.etckeeper index d750008..c06e2dc 100755 --- a/.etckeeper +++ b/.etckeeper @@ -94,6 +94,7 @@ maybe chmod 0644 'conf.d/snmpd' maybe chmod 0644 'conf.d/snmptrapd' maybe chmod 0644 'conf.d/sntp' maybe chmod 0644 'conf.d/sshd' +maybe chmod 0644 'conf.d/supervisord' maybe chmod 0644 'conf.d/svnserve' maybe chmod 0644 'conf.d/tcollector' maybe chmod 0644 'conf.d/tmpfiles' @@ -582,6 +583,7 @@ maybe chmod 0755 'init.d/snmpd' maybe chmod 0755 'init.d/snmptrapd' maybe chmod 0755 'init.d/sntp' maybe chmod 0755 'init.d/sshd' +maybe chmod 0755 'init.d/supervisord' maybe chmod 0755 'init.d/svnserve' maybe chmod 0755 'init.d/swap' maybe chmod 0755 'init.d/swapfiles' diff --git a/conf.d/supervisord b/conf.d/supervisord new file mode 100644 index 0000000..922f4ce --- /dev/null +++ b/conf.d/supervisord @@ -0,0 +1,4 @@ +# /etc/conf.d/supervisord + +# Options to pass to the supervisord process +SUPD_OPTS="" diff --git a/init.d/supervisord b/init.d/supervisord new file mode 100755 index 0000000..e1bff4f --- /dev/null +++ b/init.d/supervisord @@ -0,0 +1,13 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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"