mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-10 22:54:22 +02:00
19 lines
294 B
Bash
19 lines
294 B
Bash
#!/sbin/openrc-run
|
|
|
|
# init.d file for aconf
|
|
# Copyright (c) 2013-2014 Kaarle Ritvanen
|
|
|
|
name=aconf
|
|
command=/usr/sbin/aconfd
|
|
pidfile=/var/run/$name.pid
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping $name"
|
|
start-stop-daemon --stop --pidfile $pidfile --signal INT
|
|
eend $?
|
|
}
|