diff options
author | varac <varacanero@zeromail.org> | 2017-02-17 11:45:03 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2017-03-02 10:10:38 +0100 |
commit | c5e4934448662f7be1b463554d94e9a3298c3e70 (patch) | |
tree | f5750880fe444bd5666bd7a7529744405c3d0b29 /pkg | |
parent | 5b6d7896c469c1c4a38bd5bdbe250c19b5a1a0e7 (diff) |
Remove unused old initscript
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/leap-mx.init | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/pkg/leap-mx.init b/pkg/leap-mx.init deleted file mode 100644 index 8093c22..0000000 --- a/pkg/leap-mx.init +++ /dev/null @@ -1,69 +0,0 @@ -#!/bin/sh -### BEGIN INIT INFO -# Provides: leap-mx -# Required-Start: $network $named $remote_fs $syslog $time -# Required-Stop: $network $named $remote_fs $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: Start leap-mx daemon at boot time -# Description: transparently-encrypting remailer -### END INIT INFO - -PATH=/sbin:/bin:/usr/sbin:/usr/bin -PIDFILE=/var/run/leap_mx.pid -RUNDIR=/var/lib/leap_mx/ -FILE=/usr/share/app/mx.tac -TWISTD_PATH=/usr/bin/twistd -USER=leap-mx -GROUP=leap-mx - -[ -r /etc/default/leap_mx ] && . /etc/default/leap_mx - -. /lib/lsb/init-functions - -test -r $file || exit 0 -test -r /etc/leap/ || exit 0 - - -case "$1" in - start) - echo -n "Starting leap_mx: twistd" - HOME="/var/lib/leap_mx/" \ - start-stop-daemon --start --quiet --exec $TWISTD_PATH -- \ - --pidfile=$PIDFILE \ - --rundir=$RUNDIR \ - --python=$FILE \ - --syslog \ - --prefix=leap-mx \ - --uid=$USER \ - --gid=$GROUP - echo "." - ;; - - stop) - echo -n "Stopping leap_mx: twistd" - start-stop-daemon --stop --quiet \ - --pidfile $PIDFILE - echo "." - ;; - - restart) - $0 stop - $0 start - ;; - - force-reload) - $0 restart - ;; - - status) - status_of_proc -p $PIDFILE $TWISTD_PATH leap_mx && exit 0 || exit $? - ;; - - *) - echo "Usage: /etc/init.d/leap_mx {start|stop|restart|force-reload|status}" >&2 - exit 1 - ;; -esac - -exit 0 |