Add user feedback

Signed-off-by: Mograine <ghiot.pierre@gmail.com>
pull/2978/head
Mograine 5 years ago
parent b93628acb3
commit c809c34024

@ -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() {

Loading…
Cancel
Save