cryptonas-branches/pythonrewrite/bin/cryptoboxd
2006-10-31 17:54:58 +00:00

35 lines
684 B
Bash
Executable file

#!/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