]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
Make it possible to specify own template.
authorGabriel Filion <gabster@lelutin.ca>
Fri, 9 Oct 2015 20:59:33 +0000 (16:59 -0400)
committerGabriel Filion <gabster@lelutin.ca>
Fri, 9 Oct 2015 21:22:31 +0000 (17:22 -0400)
Micah found an issue with usage of config_content: if you call template('...')
yourself and pass that on to config_content, then your template gets evaluated
without all of the variables. This means that you don't hava access to
blacklisted_packages, mail_recipient or mailonlyonerror.

To make it possible to use a different template while still having access to
those variables, let's make it possible to change the template name that we're
using.

manifests/unattended_upgrades.pp

index 6cb0518c1c5fd185790d6df2f45552ec4c239fd5..ffb5fadfe10c04311c399c09adde988fa45abc11 100644 (file)
@@ -1,5 +1,6 @@
 class apt::unattended_upgrades (
   $config_content = undef,
+  $config_template = 'apt/50unattended-upgrades.erb',
   $mailonlyonerror = true,
   $mail_recipient = 'root',
   $blacklisted_packages = [],
@@ -11,7 +12,7 @@ class apt::unattended_upgrades (
   }
 
   $file_content = $config_content ? {
-    undef   => template('apt/50unattended-upgrades.erb'),
+    undef   => template($config_template),
     default => $config_content
   }