-
Notifications
You must be signed in to change notification settings - Fork 0
/
putiodaemon.init
executable file
·103 lines (80 loc) · 2.35 KB
/
putiodaemon.init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#! /bin/sh
### BEGIN INIT INFO
# Provides: putio
# Required-Start: $local_fs $network $remote_fs
# Required-Stop: $local_fs $network $remote_fs
# Should-Start: $NetworkManager
# Should-Stop: $NetworkManager
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts instance of CouchPotato
# Description: starts instance of CouchPotato using start-stop-daemon
### END INIT INFO
# Check for existance of defaults file
# and utilze if available
if [ -f /etc/default/putiodaemon ]; then
. /etc/default/putiodaemon
else
echo "/etc/default/putiodaemon not found using default settings.";
fi
. /lib/lsb/init-functions
# Script name
NAME=putiodaemon
# App name
DESC=putiodaemon
## Don't edit this file
## Edit user configuation in /etc/default/putiodaemon to change
##
# Run CP as username
RUN_AS=${USER-putio}
# Path to app
# HOME=path_to_app_putiodaemon.py
APP_PATH=${HOME-/opt/putio/}
# Path to store PID file
PID_FILE=${PIDFILE-/var/run/putiodaemon/putiodaemon.pid}
# path to python bin
DAEMON=${PYTHON_BIN-/usr/bin/python}
PID_PATH=`dirname $PID_FILE`
DAEMON_OPTS=" putiodaemon.py --pidfile ${PID_FILE}"
test -x $DAEMON || exit 0
set -e
# Create PID directory if not exist and ensure the CouchPotato user can write to it
if [ ! -d $PID_PATH ]; then
mkdir -p $PID_PATH
chown $RUN_AS $PID_PATH
fi
if [ ! -d $DATA_DIR ]; then
mkdir -p $DATA_DIR
chown $RUN_AS $DATA_DIR
fi
if [ -e $PID_FILE ]; then
PID=`cat $PID_FILE`
if ! kill -0 $PID > /dev/null 2>&1; then
echo "Removing stale $PID_FILE"
rm $PID_FILE
fi
fi
case "$1" in
start)
echo "Starting $DESC"
start-stop-daemon -d $APP_PATH -c $RUN_AS $EXTRA_SSD_OPTS --start --pidfile $PID_FILE --exec $DAEMON -- $DAEMON_OPTS
;;
stop)
echo "Stopping $DESC"
start-stop-daemon --stop --pidfile $PID_FILE --retry 15
;;
restart|force-reload)
echo "Restarting $DESC"
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
;;
status)
status_of_proc -p $PID_FILE "$DAEMON" "$NAME"
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
exit 1
;;
esac
exit 0