From dcbba5a0cb39bf056207f9eaaa83ad797190a6ef Mon Sep 17 00:00:00 2001 From: Nate Riffe Date: Fri, 6 May 2016 15:18:53 -0500 Subject: [PATCH] Harmonize default value for also_notify The template code that processes also_notify is of a kind with the checks and processing of other optional smart-array values. Make its default an empty string so that the clause may be properly omitted from a config that doesn't use it. --- manifests/view.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/view.pp b/manifests/view.pp index db58623..770480e 100644 --- a/manifests/view.pp +++ b/manifests/view.pp @@ -10,7 +10,7 @@ define bind::view ( $recursion_match_destinations = '', $recursion_match_only = false, $notify_source = '', - $also_notify = [], + $also_notify = '', $empty_zones = '', $order = '10', $minimal_responses = false,