mirror of https://github.com/evilhero/mylar
94 lines
1.9 KiB
D
94 lines
1.9 KiB
D
|
#!/bin/sh
|
||
|
#
|
||
|
### BEGIN INIT INFO
|
||
|
# Provides: mylar
|
||
|
# Required-Start: $all
|
||
|
# Required-Stop: $all
|
||
|
# Default-Start: 2 3 4 5
|
||
|
# Default-Stop: 0 1 6
|
||
|
# Short-Description: starts Mylar
|
||
|
# Description: starts Mylar
|
||
|
### END INIT INFO
|
||
|
|
||
|
# Source function library.
|
||
|
. /etc/init.d/functions
|
||
|
|
||
|
# Source SickBeard configuration
|
||
|
if [ -f /etc/sysconfig/mylar ]; then
|
||
|
. /etc/sysconfig/mylar
|
||
|
fi
|
||
|
|
||
|
prog=mylar
|
||
|
lockfile=/var/lock/subsys/$prog
|
||
|
|
||
|
## Edit user configuation in /etc/sysconfig/mylar to change
|
||
|
## the defaults
|
||
|
username=${MY_USER-mylar}
|
||
|
homedir=${MY_HOME-/opt/mylar}
|
||
|
datadir=${MY_DATA-/opt/mylar}
|
||
|
pidfile=${MY_PIDFILE-/var/run/mylar/mylar.pid}
|
||
|
nice=${MY_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}/Mylar.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
|
||
|
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
|