improved init.d file
This commit is contained in:
parent
09b9e2ca76
commit
4d692453cd
1 changed files with 13 additions and 8 deletions
|
@ -1,11 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
CBXPATH="/home/age/svn/cryptobox/branches/pythonrewrite/bin/"
|
||||
CBXSERVER="CryptoBoxWebserver.py"
|
||||
DAEMON="/usr/bin/python2.4 ${CBXPATH}CryptoBoxWebserver.py"
|
||||
#TODO: CBXPATH=/usr/lib/cryptobox
|
||||
CBXPATH=$(pwd)
|
||||
CBXSERVER=CryptoBoxWebserver.py
|
||||
PIDFILE=/var/run/cryptobox.pid
|
||||
DAEMON=/usr/bin/python2.4
|
||||
DAEMON_OPTS=${CBXPATH}/CryptoBoxWebserver.py
|
||||
NAME=cryptoboxd
|
||||
DESC="CryptoBox Daemon (webinterface)"
|
||||
RUNAS=age
|
||||
#TODO: RUNAS=cryptobox
|
||||
RUNAS=$USERNAME
|
||||
|
||||
#test -x $DAEMON -a -f /etc/exports || exit 0
|
||||
|
||||
|
@ -14,19 +18,20 @@ set -e
|
|||
case "$1" in
|
||||
start)
|
||||
echo -n "Starting $DESC: "
|
||||
start-stop-daemon --background --chdir $CBXPATH --chuid $RUNAS --start --quiet --oknodo --exec $DAEMON \
|
||||
start-stop-daemon --background --chdir "$CBXPATH" --chuid "$RUNAS" --start --quiet --oknodo --user "$RUNAS" --make-pidfile --pidfile "$PIDFILE" --exec "$DAEMON" \
|
||||
-- $DAEMON_OPTS
|
||||
echo "$NAME."
|
||||
;;
|
||||
|
||||
stop)
|
||||
echo -n "Stopping $DESC: "
|
||||
start-stop-daemon --stop --oknodo --exec $DAEMON
|
||||
#FIXME: this is the same as "killall python2.4"
|
||||
# using a pid file instead prevents problems, but does not kill children???
|
||||
start-stop-daemon --stop --oknodo --exec "$DAEMON"
|
||||
echo "$NAME."
|
||||
;;
|
||||
*)
|
||||
N=/etc/init.d/$NAME
|
||||
echo "Usage: $N {start|stop}" >&2
|
||||
echo "Usage: $(basename $0) {start|stop}" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue