]> Frank Brehm's Git Trees - config/weimar/etc.git/commitdiff
committing changes in /etc after emerge run
authorroot <root@weimar.pb.local>
Mon, 23 May 2016 12:31:06 +0000 (14:31 +0200)
committerroot <root@weimar.pb.local>
Mon, 23 May 2016 12:31:06 +0000 (14:31 +0200)
Package changes:
+app-admin/supervisor-3.1.3

.etckeeper
conf.d/supervisord [new file with mode: 0644]
init.d/supervisord [new file with mode: 0755]

index d75000814ed901d9e6317ca670d77352e1cb1afc..c06e2dc32bcf3b7f636150fad001900139688c63 100755 (executable)
@@ -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 (file)
index 0000000..922f4ce
--- /dev/null
@@ -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 (executable)
index 0000000..e1bff4f
--- /dev/null
@@ -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"