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.
|
#!/bin/sh
|
|
#
|
|
[ "${ACTION}" != "add" ] && exit 0
|
|
|
|
ban_iface="wan"
|
|
[ -r "/lib/functions/network.sh" ] && { . "/lib/functions/network.sh"; network_find_wan ban_iface; }
|
|
[ "${INTERFACE}" != "${ban_iface}" ] && exit 0
|
|
|
|
ban_pidfile="/var/run/banip.pid"
|
|
ban_enabled="$(/etc/init.d/banip enabled; printf "%u" "${?}")"
|
|
if [ "${ban_enabled}" = "0" ] && [ ! -s "${ban_pidfile}" ]
|
|
then
|
|
/etc/init.d/banip refresh
|
|
fi
|
|
exit 0
|