From 44b9433d75efc1cfa5dd253d390e0f10ce87d227 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Wed, 20 Jun 2012 15:08:42 -0700 Subject: [PATCH] fixed second-key test to use correct rndc.conf --- bin/tests/system/rndc/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/rndc/tests.sh b/bin/tests/system/rndc/tests.sh index 59bd47a4d6..b360e520cc 100644 --- a/bin/tests/system/rndc/tests.sh +++ b/bin/tests/system/rndc/tests.sh @@ -227,7 +227,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`