Add user feedback

Signed-off-by: Mograine <ghiot.pierre@gmail.com>
This commit is contained in:
Mograine 2019-11-27 00:27:57 +01:00
parent b93628acb3
commit c809c34024
1 changed files with 10 additions and 0 deletions

View File

@ -599,15 +599,25 @@ SetPrivacyLevel() {
}
AddCustomDNSAddress() {
echo -e " ${TICK} Adding custom DNS entry..."
ip="${args[2]}"
host="${args[3]}"
echo "${ip} ${host}" >> "${dnscustomfile}"
# Restart dnsmasq to load new custom DNS entries
RestartDNS
}
RemoveCustomDNSAddress() {
echo -e " ${TICK} Removing custom DNS entry..."
ip="${args[2]}"
host="${args[3]}"
sed -i "/${ip} ${host}/d" "${dnscustomfile}"
# Restart dnsmasq to update removed custom DNS entries
RestartDNS
}
main() {