From: C.P.A van Run Date: Tue, 20 Sep 2016 15:17:00 +0000 (+0200) Subject: On Puppet 3.7.2 the undef default for $notify_update will overwrite the default boole... X-Git-Tag: 2.4.0~20^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=20162a1cedc46ce1ec7161598faa875038d870e5;p=puppet-modules%2Fpuppetlabs-apt.git On Puppet 3.7.2 the undef default for $notify_update will overwrite the default boolean setting for $notify_update in apt::settings resulting in an error 400: "" is not a boolean --- diff --git a/manifests/source.pp b/manifests/source.pp index 0bb9b3b..9adf6a2 100644 --- a/manifests/source.pp +++ b/manifests/source.pp @@ -18,7 +18,7 @@ define apt::source( $key_content = undef, $key_source = undef, $trusted_source = undef, - $notify_update = undef, + $notify_update = true, ) { validate_string($architecture, $comment, $location, $repos) validate_bool($allow_unsigned)