You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
398 B
21 lines
398 B
#!/sbin/openrc-run
|
|
# /etc/init.d/foomuuri-dbus
|
|
|
|
description="Multizone bidirectional nftables firewall - D-Bus handler"
|
|
|
|
depend() {
|
|
need dbus foomuuri
|
|
after polkit
|
|
}
|
|
|
|
supervisor=supervise-daemon
|
|
command=/usr/sbin/foomuuri
|
|
command_args="dbus"
|
|
pidfile=/run/foomuuri-dbus.pid
|
|
|
|
reload() {
|
|
ebegin "Reloading foomuuri-dbus"
|
|
kill -HUP $(cat "${pidfile}")
|
|
eend $?
|
|
}
|