mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
38 lines
1.1 KiB
Bash
Executable file
38 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
sleeptime=60
|
|
|
|
dnsconf="/var/run/dnscache/dnscache.conf"
|
|
dnsprogram="/var/sbin/dnscache"
|
|
logfile="/var/log/dnscache.file"
|
|
|
|
dns_caching="$(uci -q get turboacc.config.dns_caching)"
|
|
dns_caching_mode="$(uci -q get turboacc.config.dns_caching_mode)"
|
|
|
|
clean_log() {
|
|
logrow="$(grep -c "" "${logfile}")"
|
|
[ "${logrow}" -lt "500" ] || echo "${curtime} Log 条数超限,清空处理!" > "${logfile}"
|
|
}
|
|
|
|
while [ "${dns_caching}" -eq "1" ];
|
|
do
|
|
curtime="$(date "+%H:%M:%S")"
|
|
|
|
clean_log
|
|
|
|
if pidof dnscache > "/dev/null"; then
|
|
echo -e "${curtime} online!" >> "${logfile}"
|
|
else
|
|
if [ "${dns_caching_mode}" = "1" ]; then
|
|
${dnsprogram} -c "${dnsconf}" > "${logfile}" 2>&1 &
|
|
elif [ "${dns_caching_mode}" = "2" ]; then
|
|
${dnsprogram} -f "${dnsconf}" > "${logfile}" 2>&1 &
|
|
elif [ "${dns_caching_mode}" = "3" ]; then
|
|
${dnsprogram} -o "${logfile}" -l "127.0.0.1" -p "5333" -b "tls://9.9.9.9" -f "tls://8.8.8.8" -u "${dnsconf}" --all-servers --cache --cache-min-ttl=3600 > "${logfile}" 2>&1 &
|
|
fi
|
|
echo "${curtime} 重启服务!" >> ${logfile}
|
|
fi
|
|
|
|
sleep "${sleeptime}"
|
|
continue
|
|
done
|