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