1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-12-22 14:58:08 +00:00

Update webpage.sh

Signed-off-by: Mograine <ghiot.pierre@gmail.com>
This commit is contained in:
Pierre Ghiot 2019-10-27 02:07:08 +02:00 committed by Mograine
parent e41c4b5bb6
commit f9d16c2b15

View File

@ -17,6 +17,7 @@ readonly FTLconf="/etc/pihole/pihole-FTL.conf"
# 03 -> wildcards
readonly dhcpstaticconfig="/etc/dnsmasq.d/04-pihole-static-dhcp.conf"
readonly PI_HOLE_BIN_DIR="/usr/local/bin"
readonly dnscustomfile="/etc/pihole/custom.list"
coltable="/opt/pihole/COL_TABLE"
if [[ -f ${coltable} ]]; then
@ -564,6 +565,17 @@ SetPrivacyLevel() {
fi
}
AddCustomDNSAddress() {
ip="${args[2]}"
host="${args[3]}"
echo "${ip} ${host}" >> "${dnscustomfile}"
}
RemoveCustomDNSAddress() {
host="${args[2]}"
sed -i "/.*${host}/d" "${dnscustomfile}"
}
main() {
args=("$@")
@ -595,6 +607,8 @@ main() {
"audit" ) addAudit "$@";;
"clearaudit" ) clearAudit;;
"-l" | "privacylevel" ) SetPrivacyLevel;;
"addcustomdns" ) AddCustomDNSAddress;;
"removecustomdns" ) RemoveCustomDNSAddress;;
* ) helpFunc;;
esac