mirror of
https://github.com/novatiq/packages.git
synced 2026-07-07 12:39:31 +01:00
7c8990cac5
Bump to version 5.1.4.1 Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
13 lines
261 B
Bash
13 lines
261 B
Bash
#!/bin/sh
|
|
|
|
# should restart shorewall-lite when an interface comes up
|
|
|
|
[ ifup = "$ACTION" ] && {
|
|
/etc/init.d/shorewall-lite restart
|
|
}
|
|
|
|
[ ifdown = "$ACTION" ] && {
|
|
# might need to restore some routing
|
|
/etc/init.d/shorewall-lite restart
|
|
}
|