# check dns query log configuration
#
adb_querydir="${adb_queryfile%/*}"
+ query_pid="/var/run/adb_query.pid"
if [ -n "${adb_querydir}" ] && [ -d "${adb_querydir}" ]
then
# check find capabilities
query_ok="true"
query_name="${adb_queryfile##*/}"
query_ip="${adb_ip//./\\.}"
- query_pid="/var/run/query.pid"
adb_mounts="${adb_mounts} ${adb_querydir}"
fi
else
query_ok="false"
+ if [ -s "${query_pid}" ]
+ then
+ kill -9 $(< "${query_pid}") 2>/dev/null
+ > "${query_pid}"
+ /usr/bin/logger -t "adblock[${pid}]" "info: remove old dns query log background process"
+ fi
/usr/bin/logger -t "adblock[${pid}]" "info: dns query logging will be disabled"
fi
exit 50
elif [ $((av_space)) -lt $((adb_minspace)) ]
then
- /usr/bin/logger -t "adblock[${pid}]" "error: not enough space on device (${mp})"
+ /usr/bin/logger -t "adblock[${pid}]" "error: not enough space left on device (${mp})"
exit 55
fi
done
#
f_deltemp
- # kill existing domain query log background process,
- # housekeeping and start of a new process on daily basis
+ # remove existing domain query log background process,
+ # do housekeeping and start a new process on daily basis
#
if [ "${query_ok}" = "true" ] && [ "${ntp_ok}" = "true" ]
then
kill -9 $(< "${query_pid}") 2>/dev/null
> "${query_pid}"
find "${adb_backupdir}" -maxdepth 1 -type f -mtime +${adb_queryhistory} -name "${query_name}.*" -exec rm -f {} \; 2>/dev/null
- /usr/bin/logger -t "adblock[${pid}]" "info: kill old query log background process and do logfile housekeeping"
+ /usr/bin/logger -t "adblock[${pid}]" "info: remove old dns query log background process and do logfile housekeeping"
fi
if [ ! -s "${query_pid}" ]
then