X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=479ac122358b44bc0aff9639d336904b33a65e94;hb=3e612ca41be9e7af6da0ba8c613ac27cd2deaddc;hp=f85b9d186ec960a3527ae4c9f7460af736a02792;hpb=45a3ce3c5179390d1990df67bc9fc937cb28028c;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index f85b9d1..479ac12 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,3 +1,4 @@ +# Setting params for the module class apt::params { if $::osfamily != 'Debian' { @@ -8,6 +9,7 @@ class apt::params { $provider = '/usr/bin/apt-get' $sources_list = "${root}/sources.list" $sources_list_d = "${root}/sources.list.d" + $trusted_gpg_d = "${root}/trusted.gpg.d" $conf_d = "${root}/apt.conf.d" $preferences = "${root}/preferences" $preferences_d = "${root}/preferences.d" @@ -21,6 +23,7 @@ class apt::params { $ppas = {} $pins = {} $settings = {} + $auth_conf_entries = [] $config_files = { 'conf' => { @@ -73,19 +76,13 @@ class apt::params { case $facts['os']['name']{ 'Debian': { - case $facts['os']['release']['full'] { - default: { $backports = { 'location' => 'http://deb.debian.org/debian', 'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', 'repos' => 'main contrib non-free', } - } - } - $ppa_options = undef $ppa_package = undef - } 'Ubuntu': { $backports = { @@ -93,25 +90,8 @@ class apt::params { 'key' => '630239CC130E1A7FD81A27B140976EAF437D05B5', 'repos' => 'main universe multiverse restricted', } - - case $facts['os']['release']['full'] { - '10.04': { - $ppa_options = undef - $ppa_package = 'python-software-properties' - } - '12.04': { - $ppa_options = '-y' - $ppa_package = 'python-software-properties' - } - '14.04', '14.10', '15.04', '15.10', '16.04': { - $ppa_options = '-y' - $ppa_package = 'software-properties-common' - } - default: { - $ppa_options = '-y' - $ppa_package = 'python-software-properties' - } - } + $ppa_options = '-y' + $ppa_package = 'software-properties-common' } undef: { fail('Unable to determine value for fact os["name"]')