Fix bad variable name in bind::zone parameter validation code

This commit is contained in:
Doug Neal 2015-05-18 17:22:32 +01:00
parent bd7f25c6ce
commit 5b4d9f772e

View File

@ -30,8 +30,8 @@ define bind::zone (
fail("transfer_source may only be provided for bind::zone resources with zone_type 'slave' or 'stub'")
}
unless !($allow_update != '' and ! $dynamic) {
fail("allow_update may only be provided for bind::zone resources with dynamic set to true")
unless !($allow_updates != '' and ! $dynamic) {
fail("allow_updates may only be provided for bind::zone resources with dynamic set to true")
}
unless !($dnssec and ! $dynamic) {