blob: c129006c57164065fbafc0f8a2a6d7b116229c10 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
[ "$ACTION" = "reload" ] ||[ "$ACTION" = "restart" ] || exit 0
if [ -x /etc/init.d/pbr ] && /etc/init.d/pbr enabled; then
logger -t "pbr" "Reloading pbr due to $ACTION of firewall"
/etc/init.d/pbr reload
fi
|