
deluged
By: a guest on
Mar 11th, 2012 | syntax:
Bash | size: 0.79 KB | hits: 64 | expires: Never
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/deluged
PIDFILE=/run/deluge/deluged.pid
OPTIONS="-P $PIDFILE $OPTIONS"
[[ -f $PIDFILE ]] && PID=$(<$PIDFILE)
kill -0 $PID || PID=
case "$1" in
start)
stat_busy "Starting Deluge Daemon"
[[ -z $PID ]] && su -l -s /bin/sh -c "/usr/bin/deluged $OPTIONS >/dev/null" $DELUGE_USER
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon deluged
stat_done
fi
;;
stop)
stat_busy "Stopping Deluge Daemon"
[[ ! -z $PID ]] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon deluged
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0