mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
19 lines
286 B
Text
19 lines
286 B
Text
#!/sbin/openrc-run
|
|
|
|
extra_started_commands="reload"
|
|
description_reload="Reload configuration file"
|
|
|
|
command="/usr/sbin/netatalk"
|
|
|
|
depend() {
|
|
need net
|
|
use logger dns
|
|
after firewall
|
|
}
|
|
|
|
reload() {
|
|
ebegin "Reloading $name"
|
|
|
|
start-stop-daemon --signal SIGHUP --name $command
|
|
eend $?
|
|
}
|