]> Frank Brehm's Git Trees - config/bruni/etc.git/commitdiff
committing changes in /etc after emerge run
authorFrank Brehm <frank@brehm-online.com>
Thu, 12 Oct 2017 19:22:04 +0000 (21:22 +0200)
committerFrank Brehm <frank@brehm-online.com>
Thu, 12 Oct 2017 19:22:04 +0000 (21:22 +0200)
Package changes:

init.d/twistd [deleted file]

diff --git a/init.d/twistd b/init.d/twistd
deleted file mode 100755 (executable)
index e7b29f1..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/runscript
-
-depend() {
-       need net
-}
-
-start() {
-       if [ -z "${TWISTD_OPTS}" ]; then
-               eerror "TWISTD_OPTS is not set!"
-               eerror "You need to configure twistd in /etc/conf.d/twistd."
-               return 1
-       fi
-       export PYTHONPATH
-       ebegin "Starting twistd"
-       start-stop-daemon --start --quiet --pidfile /var/run/twistd.pid \
-               --exec /usr/bin/twistd -- --pidfile /var/run/twistd.pid \
-                       ${TWISTD_OPTS}
-       eend $? "Failed to start twistd"
-}
-
-stop() {
-       ebegin "Stopping twistd"
-       start-stop-daemon --stop --quiet --pidfile /var/run/twistd.pid 
-       eend $? "Failed to stop twistd"
-}