1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-20 15:18:32 +00:00

Add 'local' domain if not set in setupVers.conf

This commit is contained in:
DL6ER 2017-01-02 11:08:54 +01:00
parent 677694b01a
commit dbd8aee4ee
No known key found for this signature in database
GPG Key ID: BB8EC0BC77973A30

View File

@ -189,10 +189,15 @@ ProcessDHCPSettings() {
interface="eth0" interface="eth0"
fi fi
if [[ "${PIHOLE_DOMAIN}" == "0" ]]; then
PIHOLE_DOMAIN="local"
change_setting "PIHOLE_DOMAIN" "${PIHOLE_DOMAIN}"
fi
if [[ "${DHCP_LEASETIME}" == "0" ]]; then if [[ "${DHCP_LEASETIME}" == "0" ]]; then
leasetime="infinite" leasetime="infinite"
elif [[ "${DHCP_LEASETIME}" == "" ]]; then elif [[ "${DHCP_LEASETIME}" == "" ]]; then
leasetime="24" leasetime="24h"
change_setting "DHCP_LEASETIME" "${leasetime}" change_setting "DHCP_LEASETIME" "${leasetime}"
else else
leasetime="${DHCP_LEASETIME}h" leasetime="${DHCP_LEASETIME}h"