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/arno-iptables-firewall/files/arno-iptables-firewall

28 lines
403 B

#!/sbin/runscript
command=/usr/sbin/arno-iptables-firewall
description="Single- & multi-homed firewall script with DSL/ADSL support"
extra_started_commands="reload"
description_reload="Reload blocked hosts (blackhole) file"
depend() {
before net
use logger
}
start() {
${command} start
}
stop() {
${command} stop
}
restart() {
${command} restart
}
reload() {
${command} force-reload
}