]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
Merge pull request #628 from cpavanrun/master
authorDavid Schmitt <david.schmitt@puppet.com>
Tue, 11 Oct 2016 09:42:45 +0000 (10:42 +0100)
committerGitHub <noreply@github.com>
Tue, 11 Oct 2016 09:42:45 +0000 (10:42 +0100)
Undef default for $notify_update in source.pp results in problem with Puppet 3.7.2

manifests/source.pp

index 0bb9b3be7161bd3929e12e08bcfa7d8b7fa715da..9adf6a2336ee764db234216e1cf0b20b413ef48a 100644 (file)
@@ -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)