1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 14:08:17 +02:00

Add QoS firewall stop script generation

To prevent code duplication for clearing QoS firewall rules, support
"firewall stop" arguments to generate.sh to generate the necessary
script commands.  Make use of this from qos-stop.

Signed-off-by: Kevin Locke <klocke@digitalenginesoftware.com>

SVN-Revision: 28623
This commit is contained in:
Jo-Philipp Wich 2011-10-27 12:39:19 +00:00
parent 3ffe66cbe0
commit 825658977f
2 changed files with 9 additions and 3 deletions

@ -3,5 +3,4 @@ for iface in $(tc qdisc show | grep -E '(hfsc|ingress)' | awk '{print $5}'); do
tc qdisc del dev "$iface" ingress 2>&- >&-
tc qdisc del dev "$iface" root 2>&- >&-
done
iptables -t mangle -F
iptables -t mangle -X
/usr/lib/qos/generate.sh firewall stop | sh

@ -486,6 +486,13 @@ case "$1" in
start_interfaces
;;
firewall)
start_firewall
case "$2" in
stop)
stop_firewall
;;
start|"")
start_firewall
;;
esac
;;
esac