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
|
#!/bin/sh
|
||||||
|
|
||||||
CBXPATH="/home/age/svn/cryptobox/branches/pythonrewrite/bin/"
|
#TODO: CBXPATH=/usr/lib/cryptobox
|
||||||
CBXSERVER="CryptoBoxWebserver.py"
|
CBXPATH=$(pwd)
|
||||||
DAEMON="/usr/bin/python2.4 ${CBXPATH}CryptoBoxWebserver.py"
|
CBXSERVER=CryptoBoxWebserver.py
|
||||||
|
PIDFILE=/var/run/cryptobox.pid
|
||||||
|
DAEMON=/usr/bin/python2.4
|
||||||
|
DAEMON_OPTS=${CBXPATH}/CryptoBoxWebserver.py
|
||||||
NAME=cryptoboxd
|
NAME=cryptoboxd
|
||||||
DESC="CryptoBox Daemon (webinterface)"
|
DESC="CryptoBox Daemon (webinterface)"
|
||||||
RUNAS=age
|
#TODO: RUNAS=cryptobox
|
||||||
|
RUNAS=$USERNAME
|
||||||
|
|
||||||
#test -x $DAEMON -a -f /etc/exports || exit 0
|
#test -x $DAEMON -a -f /etc/exports || exit 0
|
||||||
|
|
||||||
|
@ -14,19 +18,20 @@ set -e
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start)
|
||||||
echo -n "Starting $DESC: "
|
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
|
-- $DAEMON_OPTS
|
||||||
echo "$NAME."
|
echo "$NAME."
|
||||||
;;
|
;;
|
||||||
|
|
||||||
stop)
|
stop)
|
||||||
echo -n "Stopping $DESC: "
|
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."
|
echo "$NAME."
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
N=/etc/init.d/$NAME
|
echo "Usage: $(basename $0) {start|stop}" >&2
|
||||||
echo "Usage: $N {start|stop}" >&2
|
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue