diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-05-20 18:13:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-05-20 18:13:38 -0300 |
commit | 6aae4ffd4823073a37e549682f1101fd006506a3 (patch) | |
tree | 759278981de049ef9ae4a651390f68b82da65135 | |
parent | 7c548c9878a5e0cecca771a6b7a739af98c21f4e (diff) | |
download | puppet-apt-6aae4ffd4823073a37e549682f1101fd006506a3.tar.gz puppet-apt-6aae4ffd4823073a37e549682f1101fd006506a3.tar.bz2 |
Adding back custom_key_dir parameter
-rw-r--r-- | manifests/init.pp | 1 | ||||
-rw-r--r-- | manifests/params.pp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index c5afb2b..c217291 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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': { diff --git a/manifests/params.pp b/manifests/params.pp index b210ff6..12273ac 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -14,4 +14,5 @@ class apt::params () { $repos = 'auto' $custom_preferences = '' $disable_update = false + $custom_key_dir = false } |