You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
185 B
9 lines
185 B
12 years ago
|
#!/bin/sh
|
||
|
|
||
|
[ "$ACTION" = ifup ] || exit 0
|
||
|
|
||
|
fw3 -q network "$INTERFACE" >/dev/null || exit 0
|
||
|
|
||
|
logger -t firewall "Restarting firewall due to ifup of $INTERFACE ($DEVICE)"
|
||
|
fw3 -q restart
|