mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 15:35:01 -04:00
1845bdd5a9
Added to made init scripts executable to the changelog
95 lines
2.0 KiB
Bash
Executable File
95 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: sickbeard
|
|
# Required-Start: $all
|
|
# Required-Stop: $all
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: starts SickRage
|
|
# Description: starts SickRage
|
|
### END INIT INFO
|
|
|
|
# Source function library.
|
|
. /etc/init.d/functions
|
|
|
|
# Source SickBeard configuration
|
|
if [ -f /etc/sysconfig/sickbeard ]; then
|
|
. /etc/sysconfig/sickbeard
|
|
fi
|
|
|
|
prog=sickbeard
|
|
lockfile=/var/lock/subsys/$prog
|
|
|
|
## Edit user configuation in /etc/sysconfig/sickbeard to change
|
|
## the defaults
|
|
username=${SB_USER-sickbeard}
|
|
homedir=${SB_HOME-/opt/sickbeard}
|
|
datadir=${SB_DATA-/opt/sickbeard}
|
|
pidfile=${SB_PIDFILE-/var/run/sickbeard/sickbeard.pid}
|
|
nice=${SB_NICE-}
|
|
##
|
|
|
|
pidpath=`dirname ${pidfile}`
|
|
options=" --daemon --nolaunch --pidfile=${pidfile} --datadir=${datadir}"
|
|
|
|
# create PID directory if not exist and ensure the SickBeard user can write to it
|
|
if [ ! -d $pidpath ]; then
|
|
mkdir -p $pidpath
|
|
chown $username $pidpath
|
|
fi
|
|
|
|
if [ ! -d $datadir ]; then
|
|
mkdir -p $datadir
|
|
chown $username $datadir
|
|
fi
|
|
|
|
start() {
|
|
# Start daemon.
|
|
echo -n $"Starting $prog: "
|
|
daemon --user=${username} --pidfile=${pidfile} ${nice} python ${homedir}/SickBeard.py ${options}
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && touch $lockfile
|
|
return $RETVAL
|
|
}
|
|
|
|
stop() {
|
|
echo -n $"Shutting down $prog: "
|
|
killproc -p ${pidfile} python
|
|
RETVAL=$?
|
|
echo
|
|
[ $RETVAL -eq 0 ] && rm -f $lockfile
|
|
return $RETVAL
|
|
}
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
status)
|
|
status $prog
|
|
;;
|
|
restart|force-reload)
|
|
stop
|
|
sleep 2
|
|
start
|
|
;;
|
|
try-restart|condrestart)
|
|
if status $prog > /dev/null; then
|
|
stop
|
|
start
|
|
fi
|
|
;;
|
|
reload)
|
|
exit 3
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|status|restart|try-restart|force-reload}"
|
|
exit 2
|
|
esac
|