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
|
|
#
|
|
|
|
adb_pid="${$}"
|
|
adb_helper="/usr/bin/adblock-helper.sh"
|
|
adb_pidfile="/var/run/adblock.pid"
|
|
|
|
if [ -f "${adb_pidfile}" ] || [ "${ACTION}" != "ifup" ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
. "${adb_helper}"
|
|
f_envload
|
|
|
|
if [ "${INTERFACE}" = "${adb_wanif4}" ] || [ "${INTERFACE}" = "${adb_wanif6}" ]
|
|
then
|
|
if [ -z "${adb_hotplugif}" ] || [ "${INTERFACE}" = "${adb_hotplugif}" ]
|
|
then
|
|
/etc/init.d/adblock start
|
|
f_log "adblock service started due to '${ACTION}' of '${INTERFACE}' interface"
|
|
fi
|
|
fi
|