diff options
author | Gabriel Filion <gabster@lelutin.ca> | 2013-07-27 06:14:47 -0400 |
---|---|---|
committer | Gabriel Filion <gabster@lelutin.ca> | 2013-07-27 06:14:47 -0400 |
commit | c99227ad55e8d266a77ad5dfb672147eec6e1c3b (patch) | |
tree | c51d059852bba6748734cca4af6ddd73c57f7c9d /manifests | |
parent | 1a72a99693c1d77bfe891546408f88264fca98ee (diff) |
Make custom_sources_list into a class paramter
and thus remove the last global variable.
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 33eac37..7550aaa 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -15,6 +15,7 @@ class apt( $ubuntu_url = $apt::params::ubuntu_url, $repos = $apt::params::repos, $custom_preferences = $apt::params::custom_preferences, + $custom_sources_list = '', $disable_update = $apt::params::disable_update, $custom_key_dir = $apt::params::custom_key_dir ) inherits apt::params { @@ -53,9 +54,9 @@ class apt( $next_codename = debian_nextcodename($codename) $next_release = debian_nextrelease($release) - $sources_content = $::custom_sources_list ? { + $sources_content = $custom_sources_list ? { '' => template( "apt/${::operatingsystem}/sources.list.erb"), - default => $::custom_sources_list + default => $custom_sources_list } file { # include main, security and backports |