blob: aaa03e8a92588ef93564e6725ef416fc2bb3556b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# should restart shorewall when an interface comes up
case "$ACTION" in
ifup)
/etc/init.d/shorewall6 restart
;;
ifdown)
# might need to restore some routing
/etc/init.d/shorewall6 restart
;;
esac
|