X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=nsd%2Fnsd-dynipwatch;h=068702bbffd133a27dc9dde6f7b350ecca317eb7;hb=58dbef0f4c9b483070f21df665e86ed63f7388ad;hp=bd4b1449ff78df362c9692967412e308831dfbcd;hpb=0fdcd43f716bd3c0c29c189df1a54c88d0ac015c;p=shutils.git diff --git a/nsd/nsd-dynipwatch b/nsd/nsd-dynipwatch index bd4b144..068702b 100755 --- a/nsd/nsd-dynipwatch +++ b/nsd/nsd-dynipwatch @@ -36,15 +36,6 @@ function setAddrInZonefile # sed -i -e "s_^\\($1\\s.*A\\s.*\\s\\)\\([0-9]\\+\\.\\)\\+[0-9]\\+_\\1$3_g" "$2" } -function getSerialFromZonefile # -{ - awk '/; serial/{print$1}' "$1" -} - -function setSerialInZonefile # -{ - sed -i -e "s_^\\(.*\\s\\)[0-9]\+\\(\\s\\+; serial.*\\)_\\1$2\\2_g" "$1" -} function run() { @@ -64,11 +55,11 @@ function run() fi if ! [ "${oldip}" = "${newip}" ]; then - serial=`getSerialFromZonefile "${zonefile}"` - serial=$(( $serial + 1)) - echo " Update IP address. New serial ${serial}." + echo " Update IP address. Increment serial." setAddrInZonefile "${host}" "${zonefile}" "${newip}" - setSerialInZonefile "${zonefile}" "${serial}" + nsd-incrserial "${zonefile}" + + /etc/nsd3/signzone.sh sthu.org nsdc rebuild && nsdc reload && nsdc notify fi done