[tools] ipkg-utils: use (g)stat instead of "du -b" to find package size, fixes Darwin...
[openwrt.git] / package / qos-scripts / files / usr / bin / qos-stop
1 #!/bin/sh
2 for iface in $(tc qdisc show | grep -E '(hfsc|ingress)' | awk '{print $5}'); do
3 tc qdisc del dev "$iface" ingress 2>&- >&-
4 tc qdisc del dev "$iface" root 2>&- >&-
5 done
6 iptables -t mangle -F
7 iptables -t mangle -X
This page took 0.041961 seconds and 5 git commands to generate.