mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 15:08:40 +01:00
d346839750
Apply adblock updates 1.4.10-1.5.1 Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi> Original commit messages: adblock: update 1.4.10 - add 'enabled' check to iface hotplug event handler - decrease startup priority from 99 to 90 - fix tab indentation in config adblock: update 1.5.0 * add new 'envchk'function to check adblock environment only, i.e. check volatile firewall rules or uhttpd instances without list updates * add new optional parm 'adb_loglevel', set it to "0" to mute output (print only errors) * set hotplug priority to '90' as well (missed in the last commit) * documentation update * cosmetics adblock: bugfix 1.5.1 * fix uhttpd detection in tcp 4+6 configurations
25 lines
594 B
Bash
25 lines
594 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
adb_pid="${$}"
|
|
adb_helper="/usr/bin/adblock-helper.sh"
|
|
adb_pidfile="/var/run/adblock.pid"
|
|
adb_enabled="$(/etc/init.d/adblock enabled; echo $?)"
|
|
|
|
if [ "${adb_enabled}" = "1" ] || [ -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
|