13 lines
237 B
Plaintext
13 lines
237 B
Plaintext
|
#!/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
|
||
|
}
|