Skip to content

Commit

Permalink
Adding help and checks to the new ubuntu init and cosmetic fixes:
Browse files Browse the repository at this point in the history
* Extended the if statement checking for the new config to alert if no default config exist, before starting with defaults.
* The new defaults file setup changes the variable names and they can confuse some, added comments to clarify.
* Added cosmetic changes to the comments so capitalization is now the same everywhere and cleaned up indentation so they are the same
  • Loading branch information
psarossy committed Sep 11, 2012
1 parent 8843793 commit 3c0c114
Showing 1 changed file with 27 additions and 25 deletions.
52 changes: 27 additions & 25 deletions init.ubuntu
Expand Up @@ -14,38 +14,40 @@


# Source SickBeard configuration # Source SickBeard configuration
if [ -f /etc/default/sickbeard ]; then if [ -f /etc/default/sickbeard ]; then
. /etc/default/sickbeard . /etc/default/sickbeard
else
echo "/etc/default/sickbeard not found using default settings.";
fi fi


# script name # Script name
NAME=sickbeard NAME=sickbeard


# app name # App name
DESC=SickBeard DESC=SickBeard


## Don't edit this file ## Don't edit this file
## Edit user configuation in /etc/default/sickbeard to change ## Edit user configuation in /etc/default/sickbeard to change
## ##
## SB_USER= ## SB_USER= #$RUN_AS, username to run sickbeard under, the default is sickbeard
## SB_HOME= ## SB_HOME= #$APP_PATH, the location of SickBeard.py, the default is /opt/sickbeard
## SB_DATA= ## SB_DATA= #$DATA_DIR, the location of sickbeard.db, cache, logs, the default is /opt/sickbeard
## SB_PIDFILE= ## SB_PIDFILE= #$PID_FILE, the location of sickbeard.pid, the default is /var/run/sickbeard/sickbeard.pid
## PYTHON_BIN= ## PYTHON_BIN= #$DAEMON, the location of the python binary, the default is /usr/bin/python
## SB_OPTS= ## SB_OPTS= #$EXTRA_DAEMON_OPTS, extra cli option for sickbeard, i.e. " --config=/home/sickbeard/config.ini"
## SSD_OPTS= ## SSD_OPTS= #$EXTRA_SSD_OPTS, extra start-stop-daemon option like " --group=users"
## ##
## EXAMPLE if want to run as different user ## EXAMPLE if want to run as different user
## add SB_USER=username to /etc/default/sickbeard ## add SB_USER=username to /etc/default/sickbeard
## otherwise default sickbeard is used ## otherwise default sickbeard is used


## the defaults ## The defaults
# Run as username # Run as username
RUN_AS=${SB_USER-sickbeard} RUN_AS=${SB_USER-sickbeard}


# path to app SB_APP=path_to_app_SickBeard.py # Path to app SB_HOME=path_to_app_SickBeard.py
APP_PATH=${SB_HOME-/opt/sickbeard} APP_PATH=${SB_HOME-/opt/sickbeard}


# data directory where sickbeard.db, cache and logs are stored # Data directory where sickbeard.db, cache and logs are stored
DATA_DIR=${SB_DATA-/opt/sickbeard} DATA_DIR=${SB_DATA-/opt/sickbeard}


# Path to store PID file # Path to store PID file
Expand All @@ -54,10 +56,10 @@ PID_FILE=${SB_PIDFILE-/var/run/sickbeard/sickbeard.pid}
# path to python bin # path to python bin
DAEMON=${PYTHON_BIN-/usr/bin/python} DAEMON=${PYTHON_BIN-/usr/bin/python}


# extra daemon option like: SB_OPTS=" --config=/home/sickbeard/config.ini" # Extra daemon option like: SB_OPTS=" --config=/home/sickbeard/config.ini"
EXTRA_DAEMON_OPTS=${SB_OPTS-} EXTRA_DAEMON_OPTS=${SB_OPTS-}


# extra start-stop-daemon option like START_OPTS=" --group=users" # Extra start-stop-daemon option like START_OPTS=" --group=users"
EXTRA_SSD_OPTS=${SSD_OPTS-} EXTRA_SSD_OPTS=${SSD_OPTS-}
## ##


Expand All @@ -70,7 +72,7 @@ test -x $DAEMON || exit 0


set -e set -e


# create PID directory if not exist and ensure the SickBeard user can write to it # Create PID directory if not exist and ensure the SickBeard user can write to it
if [ ! -d $PID_PATH ]; then if [ ! -d $PID_PATH ]; then
mkdir -p $PID_PATH mkdir -p $PID_PATH
chown $RUN_AS $PID_PATH chown $RUN_AS $PID_PATH
Expand All @@ -82,29 +84,29 @@ if [ ! -d $DATA_DIR ]; then
fi fi


if [ -e $PID_FILE ]; then if [ -e $PID_FILE ]; then
PID=`cat $PID_FILE` PID=`cat $PID_FILE`
if ! kill -0 $PID > /dev/null 2>&1; then if ! kill -0 $PID > /dev/null 2>&1; then
echo "Removing stale $PID_FILE" echo "Removing stale $PID_FILE"
rm $PID_FILE rm $PID_FILE
fi fi
fi fi


case "$1" in case "$1" in
start) start)
echo "Starting $DESC" echo "Starting $DESC"
start-stop-daemon -d $APP_PATH -c $RUN_AS $EXTRA_SSD_OPTS --start --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS start-stop-daemon -d $APP_PATH -c $RUN_AS $EXTRA_SSD_OPTS --start --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS
;; ;;
stop) stop)
echo "Stopping $DESC" echo "Stopping $DESC"
start-stop-daemon --stop --pidfile $PID_FILE --retry 15 start-stop-daemon --stop --pidfile $PID_FILE --retry 15
;; ;;


restart|force-reload) restart|force-reload)
echo "Restarting $DESC" echo "Restarting $DESC"
start-stop-daemon --stop --pidfile $PID_FILE --retry 15 start-stop-daemon --stop --pidfile $PID_FILE --retry 15
start-stop-daemon -d $APP_PATH -c $RUN_AS $EXTRA_SSD_OPTS --start --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS start-stop-daemon -d $APP_PATH -c $RUN_AS $EXTRA_SSD_OPTS --start --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS
;; ;;
*) *)
N=/etc/init.d/$NAME N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2 echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1 exit 1
Expand Down

0 comments on commit 3c0c114

Please sign in to comment.