summaryrefslogtreecommitdiff
path: root/package/network/config/firewall/files/firewall.init
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-06-04 12:21:44 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-06-04 12:21:44 +0000
commit0dd6753c09a91d9046f9508f6f02c58212df8e5e (patch)
tree8ba0cdeddba484fa7f6a1c5be8e7940b2759d402 /package/network/config/firewall/files/firewall.init
parenta0e412a616d50b28b1f0eb305ef297af46b3fdf1 (diff)
downloadmtk-20170518-0dd6753c09a91d9046f9508f6f02c58212df8e5e.zip
mtk-20170518-0dd6753c09a91d9046f9508f6f02c58212df8e5e.tar.gz
mtk-20170518-0dd6753c09a91d9046f9508f6f02c58212df8e5e.tar.bz2
Drop legacy firewall package
SVN-Revision: 36837
Diffstat (limited to 'package/network/config/firewall/files/firewall.init')
-rwxr-xr-xpackage/network/config/firewall/files/firewall.init27
1 files changed, 0 insertions, 27 deletions
diff --git a/package/network/config/firewall/files/firewall.init b/package/network/config/firewall/files/firewall.init
deleted file mode 100755
index a2fd0a0..0000000
--- a/package/network/config/firewall/files/firewall.init
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh /etc/rc.common
-# Copyright (C) 2008-2010 OpenWrt.org
-
-START=45
-
-FW_LIBDIR=/lib/firewall
-
-fw() {
- . $FW_LIBDIR/core.sh
- fw_$1
-}
-
-start() {
- fw start
-}
-
-stop() {
- fw stop
-}
-
-restart() {
- fw restart
-}
-
-reload() {
- fw reload
-}