From a8bb868c9217b3933695da348991577502b22df7 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Thu, 18 Jul 2013 15:18:18 -0400 Subject: make initscript be installed via the debian packaging tools, add the required missing LSB headers --- debian/leap-mx.init | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++ pkg/leap_mx | 51 --------------------------------------------- setup.py | 4 ++-- 3 files changed, 62 insertions(+), 53 deletions(-) create mode 100644 debian/leap-mx.init delete mode 100644 pkg/leap_mx diff --git a/debian/leap-mx.init b/debian/leap-mx.init new file mode 100644 index 0000000..544230c --- /dev/null +++ b/debian/leap-mx.init @@ -0,0 +1,60 @@ +#!/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/leap_mx.tac \ +logfile=/var/log/leap_mx.log +twistd_path=/usr/bin/twistd + +[ -r /etc/default/leap_mx ] && . /etc/default/leap_mx + +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 \ + --logfile=$logfile + 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 + ;; + + *) + echo "Usage: /etc/init.d/leap_mx {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/pkg/leap_mx b/pkg/leap_mx deleted file mode 100644 index e9a68bb..0000000 --- a/pkg/leap_mx +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -PATH=/sbin:/bin:/usr/sbin:/usr/bin - -pidfile=/var/run/leap_mx.pid \ -rundir=/var/lib/leap_mx/ \ -file=/usr/share/app/leap_mx.tac \ -logfile=/var/log/leap_mx.log -twistd_path=/usr/bin/twistd - -[ -r /etc/default/leap_mx ] && . /etc/default/leap_mx - -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 \ - --logfile=$logfile - 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 - ;; - - *) - echo "Usage: /etc/init.d/leap_mx {start|stop|restart|force-reload}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/setup.py b/setup.py index d80e7e9..41c29c2 100644 --- a/setup.py +++ b/setup.py @@ -44,8 +44,8 @@ else: # be automatically # placed by distutils, using whatever interpreter is # available. - data_files = [("/usr/share/app/", ["pkg/leap_mx.tac"]), - ("/etc/init.d/", ["pkg/leap_mx"])] + data_files = [("/usr/share/app/", ["pkg/leap_mx.tac"])] + setup( name='leap.mx', version="0.2.2", -- cgit v1.2.3