Browse Source

Ubuntu init script /etc/default

pull/1503/head
Ruud 12 years ago
parent
commit
f0e7795b9b
  1. 61
      init/ubuntu
  2. 5
      init/ubuntu.default

61
init/ubuntu

@ -12,59 +12,56 @@
# Description: starts instance of CouchPotato using start-stop-daemon # Description: starts instance of CouchPotato using start-stop-daemon
### END INIT INFO ### END INIT INFO
############### EDIT ME ################## # Check for existance of defaults file
# path to app # and utilze if available
APP_PATH=/usr/local/sbin/CouchPotatoServer/ if [ -f /etc/default/couchpotato ]; then
. /etc/default/couchpotato
# user else
RUN_AS=YOUR_USERNAME_HERE echo "/etc/default/couchpotato not found using default settings.";
fi
# path to python bin
DAEMON=/usr/bin/python
# Path to store PID file
PID_FILE=/var/run/couchpotato.pid
# script name # Script name
NAME=couchpotato NAME=couchpotato
# app name # App name
DESC=CouchPotato DESC=CouchPotato
# startup args # Path to app root
DAEMON_OPTS=" CouchPotato.py --daemon --pid_file=${PID_FILE}" CP_APP_PATH=${APP_PATH-/usr/local/sbin/CouchPotatoServer/}
############### END EDIT ME ################## # User to run CP as
CP_RUN_AS=${RUN_AS-root}
# Check for existance of defaults file # Path to python bin
# and utilze if available CP_DAEMON=${DAEMON_PATH-/usr/bin/python}
if [ -e "/etc/default/couchpotato" ]
then # Path to store PID file
unset DAEMON_OPTS CP_PID_FILE=${PID_FILE-/var/run/couchpotato.pid}
. /etc/default/couchpotato
fi # Other startup args
CP_DAEMON_OPTS=" CouchPotato.py --daemon --pid_file=${CP_PID_FILE}"
test -x $DAEMON || exit 0 test -x $CP_DAEMON || exit 0
set -e set -e
case "$1" in case "$1" in
start) start)
echo "Starting $DESC" echo "Starting $DESC"
rm -rf $PID_FILE || return 1 rm -rf $CP_PID_FILE || return 1
touch $PID_FILE touch $CP_PID_FILE
chown $RUN_AS $PID_FILE chown $CP_RUN_AS $CP_PID_FILE
start-stop-daemon -d $APP_PATH -c $RUN_AS --start --background --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS start-stop-daemon -d $CP_APP_PATH -c $CP_RUN_AS --start --background --pidfile $CP_PID_FILE --exec $CP_DAEMON -- $CP_DAEMON_OPTS
;; ;;
stop) stop)
echo "Stopping $DESC" echo "Stopping $DESC"
start-stop-daemon --stop --pidfile $PID_FILE --retry 15 start-stop-daemon --stop --pidfile $CP_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 $CP_PID_FILE --retry 15
start-stop-daemon -d $APP_PATH -c $RUN_AS --start --background --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS start-stop-daemon -d $CP_APP_PATH -c $CP_RUN_AS --start --background --pidfile $CP_PID_FILE --exec $CP_DAEMON -- $CP_DAEMON_OPTS
;; ;;
*) *)
N=/etc/init.d/$NAME N=/etc/init.d/$NAME

5
init/ubuntu.default

@ -0,0 +1,5 @@
# COPY THIS FILE TO /etc/default/couchpotato
# OPTIONS: APP_PATH, RUN_AS, DAEMON_PATH, CP_PID_FILE
APP_PATH=
RUN_AS=root
Loading…
Cancel
Save