openwrtv4/package/network/config/firewall3/files/firewall.init
Jo-Philipp Wich 9faa312dbb firewall3: update to git head
* Adds support for emitting hotplug events when creating and clearing zones (fixes miniupnpd)
 * Make NAT reflection direction configurable
 * Map init script stop action to flush
 * Map init script reload action to reload
 * Respect init script disabled state in hotplug handler

SVN-Revision: 35998
2013-03-13 15:46:30 +00:00

25 lines
262 B
Bash
Executable file

#!/bin/sh /etc/rc.common
START=19
boot() {
# Be silent on boot, firewall might be started by hotplug already,
# so don't complain in syslog.
fw3 -q start
}
start() {
fw3 start
}
stop() {
fw3 flush
}
restart() {
fw3 restart
}
reload() {
fw3 reload
}