mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-27 20:31:40 +01:00
36 lines
778 B
Plaintext
36 lines
778 B
Plaintext
#!/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
|
|
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 $?
|
|
}
|
|
|