aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-11-18 13:40:58 +0100
committerGravatar Christian Hesse <mail@eworm.de>2013-11-18 13:40:58 +0100
commita52664bc7e567ee8fb37a07b70a3492cf55361fa (patch)
tree0d99f7601e4b63baae5c60bb0db610b9b83ce32d
parentd4d781d42e135140a0d920d41372113ff7482382 (diff)
downloaddhcpcd-hook-pdnsd-a52664bc7e567ee8fb37a07b70a3492cf55361fa.tar.gz
dhcpcd-hook-pdnsd-a52664bc7e567ee8fb37a07b70a3492cf55361fa.tar.zst
do not act on INFORM
-rw-r--r--21-pdnsd5
1 files changed, 4 insertions, 1 deletions
diff --git a/21-pdnsd b/21-pdnsd
index 0ce2033..6952332 100644
--- a/21-pdnsd
+++ b/21-pdnsd
@@ -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