2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

don't call out to the internet when running test

This commit is contained in:
Mark Andrews
2012-08-30 13:53:41 +10:00
parent 3af6cd2426
commit d0522678a1

View File

@@ -24,7 +24,7 @@ for db in zones/good*.db
do
echo "I:checking $db ($n)"
ret=0
$CHECKZONE example $db > test.out.$n 2>&1 || ret=1
$CHECKZONE -i local example $db > test.out.$n 2>&1 || ret=1
n=`expr $n + 1`
if [ $ret != 0 ]; then echo "I:failed"; fi
status=`expr $status + $ret`