RelayBot/run.sh

42 lines
551 B
Bash
Raw Permalink Normal View History

#!/bin/bash
if [ "X`id -u`" = "X0" -a -z "$RUN_AS_USER" ]
then
echo "Do not run this script as root."
exit 1
fi
start() {
twistd --python=relaybot.py --logfile=relaybot.log --pidfile=relaybot.pid
}
stop() {
kill `cat relaybot.pid`
}
case "$1" in
'start')
start
;;
'stop')
stop
;;
'restart')
stop
start
;;
'status')
tail -F relaybot.log
;;
*)
echo "Usage: $0 { start | stop | restart | status }"
exit 1
;;
esac
exit 0