start-stop-daemon

This commit is contained in:
age 2006-10-31 17:54:58 +00:00
parent cff42b7b6f
commit 09b9e2ca76
1 changed files with 34 additions and 0 deletions

34
pythonrewrite/bin/cryptoboxd Executable file
View File

@ -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