summaryrefslogtreecommitdiffstats
path: root/testing/sircbot/sircbot.initd
blob: 2e0a9c3302374a93b05334456305b89b2f58e028 (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
#!/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
}

checkonfig() {
	if [ -z "$sircbot_channels" ]; then
		eerror "Please specify sircbot_channels in /etc/conf.d/sircbot"
		return 1
	fi
	return 0
}

start() {
	checkconfig || return 1
        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 $?
}