udptunnel: new package
[feed/packages.git] / net / shorewall-lite / files / hotplug_iface
1 #!/bin/sh
2
3 # should restart shorewall when an interface comes up
4
5 case "$ACTION" in
6 ifup)
7 /etc/init.d/shorewall-lite restart
8 ;;
9 ifdown)
10 # might need to restore some routing
11 /etc/init.d/shorewall-lite restart
12 ;;
13 esac