aboutsummaryrefslogtreecommitdiffstats
path: root/main/sircbot/sircbot.initd
blob: 502ac09433bfae348ac4a6ede60cc0b597809973 (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
#!/sbin/openrc-run

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 \
				"${nickserv_pass:+-c "nickserv :identify $nickserv_pass"}" \
				$sircbot_channels
        eend $?
}

stop() {
        ebegin "Stopping sircbot"
        start-stop-daemon --stop --pidfile "$pidfile" --exec $daemon
        eend $?
}