[master] fix geoip options

4284.	[bug]		Some GeoIP options were incorrectly documented
			using abbreviated forms which were not accepted by
			named.  The code has been updated to allow both
			long and abbreviated forms. [RT #41381]
This commit is contained in:
Evan Hunt
2015-12-26 10:50:32 -08:00
parent 4fa9eaf073
commit fbed5f0f44
6 changed files with 87 additions and 13 deletions

View File

@@ -477,5 +477,12 @@ fi
[ $ret -eq 0 ] || echo "I:failed"
status=`expr $status + $ret`
n=`expr $n + 1`
echo "I:checking other GeoIP options are parsed correctly ($n)"
ret=0
$CHECKCONF options.conf || ret=1
[ $ret -eq 0 ] || echo "I:failed"
status=`expr $status + $ret`
echo "I:exit status: $status"
exit $status