]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
corrected typo in nsupdate test (DIG-->$DIG)
authorCurtis Blackburn <ckb@isc.org>
Thu, 3 Nov 2016 01:09:37 +0000 (18:09 -0700)
committerCurtis Blackburn <ckb@isc.org>
Thu, 3 Nov 2016 01:09:37 +0000 (18:09 -0700)
bin/tests/system/nsupdate/tests.sh

index ded835439e91e012aca0d733423ecab19133ba5e..8a1e4797e03f4296ea91f03fb83fc716c6ef36b0 100755 (executable)
@@ -696,7 +696,7 @@ update add r1.too-big.test 3600 IN TXT r1.too-big.test
 send
 EOF
 grep "update failed: SERVFAIL" nsupdate.out-$n > /dev/null || ret=1
-DIG +tcp @10.53.0.3 -p 5300 r1.too-big.test TXT > dig.out.ns3.test$n
+$DIG +tcp @10.53.0.3 -p 5300 r1.too-big.test TXT > dig.out.ns3.test$n
 grep "status: NXDOMAIN" dig.out.ns3.test$n > /dev/null || ret=1
 grep "records in zone (4) exceeds max-records (3)" ns3/named.run > /dev/null || ret=1
 [ $ret = 0 ] || { echo I:failed; status=1; }