9faa312dbb
* Adds support for emitting hotplug events when creating and clearing zones (fixes miniupnpd) * Make NAT reflection direction configurable * Map init script stop action to flush * Map init script reload action to reload * Respect init script disabled state in hotplug handler SVN-Revision: 35998
11 lines
223 B
Bash
11 lines
223 B
Bash
#!/bin/sh
|
|
|
|
[ "$ACTION" = ifup ] || exit 0
|
|
|
|
/etc/init.d/firewall enabled || exit 0
|
|
|
|
fw3 -q network "$INTERFACE" >/dev/null || exit 0
|
|
|
|
logger -t firewall "Reloading firewall due to ifup of $INTERFACE ($DEVICE)"
|
|
fw3 -q reload
|