aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/config/firewall3/files/firewall.init
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-02-17 19:26:52 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-02-17 19:26:52 +0000
commitbc882ab1f158ad5f376cc5cb22de14637fe1e420 (patch)
treebc271d531ccba42e3c952886e86f7e70a244d7f5 /package/network/config/firewall3/files/firewall.init
parent0b74564295f815a1abc400ca2437de07a34f3e9d (diff)
downloadupstream-bc882ab1f158ad5f376cc5cb22de14637fe1e420.tar.gz
upstream-bc882ab1f158ad5f376cc5cb22de14637fe1e420.tar.bz2
upstream-bc882ab1f158ad5f376cc5cb22de14637fe1e420.zip
firewall3 - a C implementation of the current firewall scripts
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35643 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/config/firewall3/files/firewall.init')
-rwxr-xr-xpackage/network/config/firewall3/files/firewall.init17
1 files changed, 17 insertions, 0 deletions
diff --git a/package/network/config/firewall3/files/firewall.init b/package/network/config/firewall3/files/firewall.init
new file mode 100755
index 0000000000..bddbadd880
--- /dev/null
+++ b/package/network/config/firewall3/files/firewall.init
@@ -0,0 +1,17 @@
+#!/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
+}