mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-11 07:22:54 +00:00
a844275f37
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com> SVN-Revision: 39300
11 lines
250 B
Bash
11 lines
250 B
Bash
#!/bin/sh
|
|
|
|
[ "$ACTION" = ifup -o "$ACTION" = ifupdate ] || exit 0
|
|
|
|
/etc/init.d/firewall enabled || exit 0
|
|
|
|
fw3 -q network "$INTERFACE" >/dev/null || exit 0
|
|
|
|
logger -t firewall "Reloading firewall due to $ACTION of $INTERFACE ($DEVICE)"
|
|
fw3 -q reload
|