packages/net/shorewall/files/hotplug_iface
W. van den Akker 47889003d9
Shorewall: Add full package.
Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
2017-11-13 08:06:32 +01:00

13 lines
254 B
Bash

#!/bin/sh
# should restart shorewall when an interface comes up
case "$ACTION" in
ifup)
/etc/init.d/shorewall restart
;;
ifdown)
# might need to restore some routing
/etc/init.d/shorewall restart
;;
esac