mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
Set domain name via Settings page
This commit is contained in:
parent
1556adb678
commit
ba015c1918
1 changed files with 33 additions and 17 deletions
|
@ -172,23 +172,39 @@ SetWebUILayout(){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for var in "$@"; do
|
SetDNSDomainName(){
|
||||||
case "${var}" in
|
|
||||||
"-p" | "password" ) SetWebPassword;;
|
# Remove setting from file (create backup setupVars.conf.bak)
|
||||||
"-c" | "celsius" ) unit="C"; SetTemperatureUnit;;
|
sed -i.bak '/PIHOLE_DOMAIN/d;' /etc/pihole/setupVars.conf
|
||||||
"-f" | "fahrenheit" ) unit="F"; SetTemperatureUnit;;
|
# Save setting to file
|
||||||
"setdns" ) SetDNSServers;;
|
echo "PIHOLE_DOMAIN=${args[2]}" >> /etc/pihole/setupVars.conf
|
||||||
"setexcludedomains" ) SetExcludeDomains;;
|
|
||||||
"setexcludeclients" ) SetExcludeClients;;
|
# Replace within actual dnsmasq config file
|
||||||
"reboot" ) Reboot;;
|
sed -i '/domain=/d;' /etc/dnsmasq.d/01-pihole.conf
|
||||||
"restartdns" ) RestartDNS;;
|
echo "domain=${args[2]}" >> /etc/dnsmasq.d/01-pihole.conf
|
||||||
"setquerylog" ) SetQueryLogOptions;;
|
|
||||||
"enabledhcp" ) EnableDHCP;;
|
# Restart dnsmasq to load new configuration
|
||||||
"disabledhcp" ) DisableDHCP;;
|
RestartDNS
|
||||||
"layout" ) SetWebUILayout;;
|
|
||||||
"-h" | "--help" ) helpFunc;;
|
}
|
||||||
esac
|
|
||||||
done
|
case "${args[1]}" in
|
||||||
|
"-p" | "password" ) SetWebPassword;;
|
||||||
|
"-c" | "celsius" ) unit="C"; SetTemperatureUnit;;
|
||||||
|
"-f" | "fahrenheit" ) unit="F"; SetTemperatureUnit;;
|
||||||
|
"setdns" ) SetDNSServers;;
|
||||||
|
"setexcludedomains" ) SetExcludeDomains;;
|
||||||
|
"setexcludeclients" ) SetExcludeClients;;
|
||||||
|
"reboot" ) Reboot;;
|
||||||
|
"restartdns" ) RestartDNS;;
|
||||||
|
"setquerylog" ) SetQueryLogOptions;;
|
||||||
|
"enabledhcp" ) EnableDHCP;;
|
||||||
|
"disabledhcp" ) DisableDHCP;;
|
||||||
|
"layout" ) SetWebUILayout;;
|
||||||
|
"-h" | "--help" ) helpFunc;;
|
||||||
|
"domainname" ) SetDNSDomainName;;
|
||||||
|
* ) helpFunc;;
|
||||||
|
esac
|
||||||
|
|
||||||
shift
|
shift
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue