openwrtv3/package/network/config/firewall3/files/firewall.init
2013-02-17 19:26:52 +00:00

17 lines
207 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 stop
}