2
0
forked from Ivasoft/openwrt

firewall3: rename to firewall, move into base system menu, update to git head with compatibility fixes for AA

SVN-Revision: 36838
This commit is contained in:
Jo-Philipp Wich
2013-06-04 12:21:52 +00:00
parent 0dd6753c09
commit b721c92221
6 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,25 @@
#!/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
}