diff --git a/pythonrewrite/bin/cryptoboxd b/pythonrewrite/bin/cryptoboxd new file mode 100755 index 0000000..f183e60 --- /dev/null +++ b/pythonrewrite/bin/cryptoboxd @@ -0,0 +1,34 @@ +#!/bin/sh + +CBXPATH="/home/age/svn/cryptobox/branches/pythonrewrite/bin/" +CBXSERVER="CryptoBoxWebserver.py" +DAEMON="/usr/bin/python2.4 ${CBXPATH}CryptoBoxWebserver.py" +NAME=cryptoboxd +DESC="CryptoBox Daemon (webinterface)" +RUNAS=age + +#test -x $DAEMON -a -f /etc/exports || exit 0 + +set -e + +case "$1" in + start) + echo -n "Starting $DESC: " + start-stop-daemon --background --chdir $CBXPATH --chuid $RUNAS --start --quiet --oknodo --exec $DAEMON \ + -- $DAEMON_OPTS + echo "$NAME." + ;; + + stop) + echo -n "Stopping $DESC: " + start-stop-daemon --stop --oknodo --exec $DAEMON + echo "$NAME." + ;; + *) + N=/etc/init.d/$NAME + echo "Usage: $N {start|stop}" >&2 + exit 1 + ;; +esac + +exit 0