consistency

pull/895/head
Adam Warner 8 years ago committed by Dan Schaper
parent edd00e8e70
commit c47c5e466f

@ -132,12 +132,12 @@ piholeLogging() {
if [[ "${1}" == "off" ]] ; then if [[ "${1}" == "off" ]] ; then
#Disable Logging #Disable Logging
sed -i 's/^log-queries/#log-queries/' /etc/dnsmasq.d/01-pihole.conf sed -i 's/^log-queries/#log-queries/' /etc/dnsmasq.d/01-pihole.conf
sed -i 's/^queryLogging=true/queryLogging=false/' /etc/pihole/setupVars.conf sed -i 's/^QUERY_LOGGING=true/QUERY_LOGGING=false/' /etc/pihole/setupVars.conf
echo "::: Logging has been disabled!" echo "::: Logging has been disabled!"
elif [[ "${1}" == "on" ]] ; then elif [[ "${1}" == "on" ]] ; then
#Enable logging #Enable logging
sed -i 's/^#log-queries/log-queries/' /etc/dnsmasq.d/01-pihole.conf sed -i 's/^#log-queries/log-queries/' /etc/dnsmasq.d/01-pihole.conf
sed -i 's/^queryLogging=false/queryLogging=true/' /etc/pihole/setupVars.conf sed -i 's/^QUERY_LOGGING=false/QUERY_LOGGING=true/' /etc/pihole/setupVars.conf
echo "::: Logging has been enabled!" echo "::: Logging has been enabled!"
else else
echo "::: Invalid option passed, please pass 'on' or 'off'" echo "::: Invalid option passed, please pass 'on' or 'off'"

Loading…
Cancel
Save