diff options
Diffstat (limited to '21-pdnsd')
-rw-r--r-- | 21-pdnsd | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ #!/bin/sh case "${reason}" in - BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT|STATIC) + BOUND|REBIND|REBOOT|RENEW|TIMEOUT|STATIC) # Set the IP of "dynamic" entry for pdnsd SRVS="" for X in ${new_domain_name_servers}; do @@ -17,4 +17,7 @@ case "${reason}" in # reset to values in /etc/pdnsd.conf pdnsd-ctl config ;; + INFORM) + # do nothing here + ;; esac |