13 lines
237 B
Plaintext
Raw Normal View History

#!/bin/sh
# should restart shorewall when an interface comes up
[ ifup = "$ACTION" ] && {
/etc/init.d/shorewall6-lite restart
}
[ ifdown = "$ACTION" ] && {
# might need to restore some routing
/etc/init.d/shorewall6-lite restart
}