* all relevant adblock events will be properly written to syslog/stdout * removed needless 'debug log' option * add optional parm 'adb_forcedns' to redirect all queries to local resolver (default: '1', enabled) * revised space check * various code cosmetics & cleanups Signed-off-by: Dirk Brenken <openwrt@brenken.org>
21 lines
497 B
Bash
21 lines
497 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
adb_pid="${$}"
|
|
adb_pidfile="/var/run/adblock.pid"
|
|
adb_logger="/usr/bin/logger"
|
|
|
|
if [ -f "${adb_pidfile}" ] || [ "${ACTION}" != "ifup" ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
. /lib/functions/network.sh
|
|
network_find_wan adb_wanif4
|
|
network_find_wan6 adb_wanif6
|
|
|
|
if [ "${INTERFACE}" = "${adb_wanif4}" ] || [ "${INTERFACE}" = "${adb_wanif6}" ]
|
|
then
|
|
/etc/init.d/adblock start
|
|
"${adb_logger}" -t "adblock[${adb_pid}] info " "adblock service started due to '${ACTION}' of '${INTERFACE}' interface"
|
|
fi
|