blob: f52a30ce945f9b6f4220b604926bb908210f47c1 (
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
|
#!/sbin/runscript
daemon=/usr/bin/sircbot
sircbot_user=${sircbot_user:-sircbot}
sircbot_group=${sircbot_group:-sircbot}
pidfile=/var/run/sircbot/sircbot.pid
depends() {
need net
after firewall
}
checkconfig() {
if [ -z "$sircbot_channels" ]; then
eerror "Please specify sircbot_channels in /etc/conf.d/sircbot"
return 1
fi
return 0
}
start() {
checkconfig || return 1
checkpath --directory /var/run/sircbot --owner ${sircbot_user}
ebegin "Starting sircbot"
start-stop-daemon --start --user $sircbot_user --group $sircbot_group \
--umask 0002 --pidfile "$pidfile" \
--exec $daemon -- $sircbot_opts $sircbot_channels
eend $?
}
stop() {
ebegin "Stopping sircbot"
start-stop-daemon --stop --pidfile "$pidfile" --exec $daemon
eend $?
}
|