pull/895/head
Promofaux 8 years ago committed by Dan Schaper
parent 035e4bf727
commit d4dccfdb2d

@ -537,6 +537,29 @@ setDNS() {
fi
}
setLogging() {
LogToggleCommand=(whiptail --separate-output --radiolist "Select Logging mode:" ${r} ${c} 6)
DNSChooseOptions=("On (Reccomended)" "" on
Off "" off)
DNSchoices=$("${DNSChooseCmd[@]}" "${DNSChooseOptions[@]}" 2>&1 >/dev/tty)
if [[ $? = 0 ]];then
case ${DNSchoices} in
"On (Reccomended)")
echo "::: Logging On."
queryLogging=true
;;
Off)
echo "::: Logging Off."
queryLogging=false
;;
esac
else
echo "::: Cancel selected. Exiting..."
exit 1
fi
}
version_check_dnsmasq() {
# Check if /etc/dnsmasq.conf is from pihole. If so replace with an original and install new in .d directory
local dnsmasq_conf="/etc/dnsmasq.conf"
@ -611,6 +634,14 @@ version_check_dnsmasq() {
fi
sed -i 's/^#conf-dir=\/etc\/dnsmasq.d$/conf-dir=\/etc\/dnsmasq.d/' ${dnsmasq_conf}
if [[ "${queryLogging}" == false ]] ; then
#Disable Logging
sed -i 's/^log-queries/#log-queries/' ${dnsmasq_pihole_01_location}
else
#Enable Logging
sed -i 's/^#log-queries/log-queries/' ${dnsmasq_pihole_01_location}
fi
}
remove_legacy_scripts() {
@ -855,6 +886,7 @@ finalExports() {
echo "IPv6_address=${IPv6_address}"
echo "piholeDNS1=${piholeDNS1}"
echo "piholeDNS2=${piholeDNS2}"
echo "queryLogging=${queryLogging}"
}>> "${setupVars}"
}
@ -1034,6 +1066,12 @@ main() {
use4andor6
# Decide what upstream DNS Servers to use
setDNS
# Let the user decide if they want query logging enabled...
setLogging
# Install packages used by the Pi-hole
install_dependent_packages PIHOLE_DEPS[@]
# Install and log everything to a file
installPihole | tee ${tmpLog}
else

Loading…
Cancel
Save