]> git.enpas.org Git - openwrt.git/blob - package/network/config/firewall3/files/firewall.init
bddbadd880a0c4c74419ad3fd4342154f1434300
[openwrt.git] / package / network / config / firewall3 / files / firewall.init
1 #!/bin/sh /etc/rc.common
2
3 START=19
4
5 boot() {
6         # Be silent on boot, firewall might be started by hotplug already,
7         # so don't complain in syslog.
8         fw3 -q start
9 }
10
11 start() {
12         fw3 start
13 }
14
15 stop() {
16         fw3 stop
17 }