-
Notifications
You must be signed in to change notification settings - Fork 17
/
freebsd.initd
executable file
·80 lines (67 loc) · 2.62 KB
/
freebsd.initd
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
#!/bin/sh
#
# Author: Kriss1981
#
# PROVIDE: LazyLibrarian
# REQUIRE: DAEMON sabnzbd
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# lazylibrarian_enable (bool): Set to NO by default.
# Set it to YES to enable it.
# lazylibrarian_user: The user account LazyLibrarian daemon runs as what
# you want it to be. It uses '_sabnzbd' user by
# default. Do not sets it as empty or it will run
# as root.
# lazylibrarian_dir: Directory where lazylibrarian lives.
# Default: /usr/local/lazylibrarian
# lazylibrarian_chdir: Change to this directory before running lazylibrarian.
# Default is same as lazylibrarian_dir.
# lazylibrarian_pid: The name of the pidfile to create.
# Default is lazylibrarian.pid in lazylibrarian_dir.
. /etc/rc.subr
name="lazylibrarian"
rcvar=${name}_enable
load_rc_config ${name}
: ${lazylibrarian_enable:="NO"}
: ${lazylibrarian_user:="USERNAME"}
: ${lazylibrarian_dir:="/usr/local/lazylibrarian"}
: ${lazylibrarian_chdir:="${lazylibrarian_dir}"}
: ${lazylibrarian_pid:="${lazylibrarian_dir}/lazylibrarian.pid"}
PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin"
WGET="/usr/local/bin/wget" # You need wget for this script to safely shutdown couchpotato.
HOST="localhost" # Set LazyLibrarian address here.
PORT="5299" # Set LazyLibrarian port here.
LLUSR="" # Set LazyLibrarian username (if you use one) here.
LLPWD="" # Set LazyLibrarian password (if you use one) here.
status_cmd="${name}_status"
stop_cmd="${name}_stop"
command="/usr/sbin/daemon"
command_args="-f -p ${lazylibrarian_pid} python ${lazylibrarian_dir}/LazyLibrarian.py ${lazylibrarian_flags} --quiet"
# Ensure user is root when running this script.
if [ `id -u` != "0" ]; then
echo "Oops, you should be root before running this!"
exit 1
fi
verify_lazylibrarian_pid() {
# Make sure the pid corresponds to the lazylibrarian process.
pid=`cat ${lazylibrarian_pid} 2>/dev/null`
ps -p ${pid} | grep -q "python ${lazylibrarian_dir}/LazyLibrarian.py"
return $?
}
# Try to stop lazylibrarian cleanly by calling shutdown over http.
lazylibrarian_stop() {
echo "Stopping $name"
verify_lazylibrarian_pid
${WGET} -O - -q --user=${LLUSR} --password=${LLPWD} "http://${HOST}:${PORT}/shutdown/" >/dev/null
if [ -n "${pid}" ]; then
wait_for_pids ${pid}
echo "Stopped"
fi
}
lazylibrarian_status() {
verify_lazylibrarian_pid && echo "$name is running as ${pid}" || echo "$name is not running"
}
run_rc_command "$1"