packages/net/shorewall/files/hotplug_iface

14 lines
254 B
Text
Raw Normal View History

#!/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