blob: 238748d68157621abf07bbf1edf2da62a586ca0b (
plain)
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
|
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
RUNDIR=/var/run/sabnzbd
depend() {
need net
}
get_var() {
echo $(sed -n \
'/^\[misc]/,/^'$1'/ s/^'$1' = \([[:alnum:].]\+\)[\r|\n|\r\n]*$/\1/p' \
${SABNZBD_CONFIGFILE})
}
get_port() {
if [ "$(get_var 'enable_https')" == "1" ]; then
echo $(get_var 'https_port')
else
echo $(get_var 'port')
fi
}
get_addr() {
local host=$(get_var 'host')
local port=$(get_port)
local protocol
[ "${host}" == "0.0.0.0" ] && host=localhost
if [ "$(get_var 'enable_https')" == "1" ]; then
protocol="https"
else
protocol="http"
fi
echo ${protocol}://${host}:${port}
}
get_pidfile() {
local port=$(get_port)
echo "${RUNDIR}/sabnzbd-${port}.pid"
}
start() {
ebegin "Starting SABnzbd"
checkpath -q -d -o ${SABNZBD_USER}:${SABNZBD_GROUP} -m 0770 "${RUNDIR}"
start-stop-daemon \
--quiet \
--start \
--user ${SABNZBD_USER} \
--group ${SABNZBD_GROUP} \
--name sabnzbd \
--background \
--pidfile $(get_pidfile) \
--exec /usr/bin/sabnzbd \
-- \
--config-file ${SABNZBD_CONFIGFILE} \
--logging ${SABNZBD_LOGGING} \
--daemon \
--pid ${RUNDIR}
eend $?
}
start_pre() {
if [ "$RC_CMD" == "restart" ]; then
local pidfile=$(get_pidfile)
while [ -e ${pidfile} ]; do
sleep 1
done
fi
return 0
}
stop() {
local api_key=$(get_var 'api_key')
local addr=$(get_addr)
local pidfile=$(get_pidfile)
local rc=1
ebegin "Stopping SABnzbd @ ${addr}"
# SABnzbd will return "ok" if shutdown is successful
rc=$(/usr/bin/curl -k -s "${addr}/sabnzbd/api?mode=shutdown&apikey=${api_key}")
if [ "${rc}" == "ok" ]; then
rc=0
else
einfo "Falling back to SIGTERM, this may not work if you restarted via the web interface"
start-stop-daemon \
--stop \
--pidfile ${pidfile} \
--retry SIGTERM/1/SIGKILL/5
rc=$?
fi
eend ${rc}
}
|