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.
gentoo-overlay/net-firewall/nufw/files/nufw-init.d

18 lines
273 B

#!/sbin/openrc-run
depend() {
before net
}
start() {
ebegin "Starting nufw"
start-stop-daemon --start --quiet --exec /usr/sbin/nufw -- -D ${NUFW_OPTIONS}
eend $?
}
stop() {
ebegin "Stopping nufw"
start-stop-daemon --stop --quiet --pidfile /run/nufw.pid
eend $?
}