Re-created rt27597a for ongoing DLZ work

This commit is contained in:
Evan Hunt
2012-03-05 14:45:30 -08:00
parent 632c0f1e91
commit d731ee9121
21 changed files with 298 additions and 109 deletions

View File

@@ -51,5 +51,11 @@ $CHECKCONF dnssec.3 2>&1 | grep '.*' && ret=1
if [ $ret != 0 ]; then echo "I:failed"; fi
status=`expr $status + $ret`
echo "I: checking named-checkconf DLZ warnings"
ret=0
$CHECKCONF dlz-bad.conf 2>&1 | grep "'dlz' and 'database'" > /dev/null || ret=1
if [ $ret != 0 ]; then echo "I:failed"; fi
status=`expr $status + $ret`
echo "I:exit status: $status"
exit $status