]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
Adding back custom_key_dir parameter
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 20 May 2013 21:13:38 +0000 (18:13 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 20 May 2013 21:13:38 +0000 (18:13 -0300)
manifests/init.pp
manifests/params.pp

index c5afb2b0f61ea2d7ef795480ea402feec4a679cb..c217291015fcab776a448bbbd11102ee3705eb6a 100644 (file)
@@ -16,6 +16,7 @@ class apt(
   $repos = $apt::params::repos,
   $custom_preferences = $apt::params::custom_preferences,
   $disable_update = $apt::params::disable_update
+  $custom_key_dir = $apt::params::custom_key_dir
 ) inherits apt::params {
   case $::operatingsystem {
     'debian': {
index b210ff640423acec72fc7efe10a31cca9df209af..12273ac23956b195ca8c3deb19c88464a3852d2f 100644 (file)
@@ -14,4 +14,5 @@ class apt::params () {
   $repos = 'auto'
   $custom_preferences = ''
   $disable_update = false
+  $custom_key_dir = false
 }