diff options
author | Christian Hesse <mail@eworm.de> | 2013-11-18 13:40:58 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-11-18 13:40:58 +0100 |
commit | a52664bc7e567ee8fb37a07b70a3492cf55361fa (patch) | |
tree | 0d99f7601e4b63baae5c60bb0db610b9b83ce32d /21-pdnsd | |
parent | d4d781d42e135140a0d920d41372113ff7482382 (diff) | |
download | dhcpcd-hook-pdnsd-a52664bc7e567ee8fb37a07b70a3492cf55361fa.tar.gz dhcpcd-hook-pdnsd-a52664bc7e567ee8fb37a07b70a3492cf55361fa.tar.zst |
do not act on INFORM
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 |