From: Evan Hunt Date: Wed, 20 Jun 2012 22:07:24 +0000 (-0700) Subject: fixed second-key test to use correct rndc.conf X-Git-Tag: v9.10.0a1~1115 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=8566c18b02649646867f444297fabb95cb2bd37e;p=thirdparty%2Fbind9.git fixed second-key test to use correct rndc.conf --- diff --git a/bin/tests/system/rndc/tests.sh b/bin/tests/system/rndc/tests.sh index 634b0e4e186..24616f0c902 100644 --- a/bin/tests/system/rndc/tests.sh +++ b/bin/tests/system/rndc/tests.sh @@ -235,7 +235,7 @@ status=`expr $status + $ret` echo "I:test using second key" ret=0 -$RNDC -s 10.53.0.2 -p 9953 -k ns2/secondkey.key status > /dev/null || ret=1 +$RNDC -s 10.53.0.2 -p 9953 -c ../common/rndc.conf -k ns2/secondkey.key status > /dev/null || ret=1 if [ $ret != 0 ]; then echo "I:failed"; fi status=`expr $status + $ret`