X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=ae26a7dfda57248a5a02b22fb0a7073b44e855d0;hb=53da1d1ab835cc8f7ff6e21470b5a14952ae43a1;hp=87c4a2b6b1a25e0208528519c2279e17ef26d76d;hpb=a99752f729bf5d3200f63d3e336e4021a1e5d4a5;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index 87c4a2b..ae26a7d 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,13 +1,18 @@ +# @summary Provides defaults for the Apt module parameters. +# +# @api private +# class apt::params { if $::osfamily != 'Debian' { - fail('This module only works on Debian or derivatives like Ubuntu') + fail(translate('This module only works on Debian or derivatives like Ubuntu')) } $root = '/etc/apt' $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 +26,7 @@ class apt::params { $ppas = {} $pins = {} $settings = {} + $auth_conf_entries = [] $config_files = { 'conf' => { @@ -49,6 +55,7 @@ class apt::params { 'host' => undef, 'port' => 8080, 'https' => false, + 'direct' => false, } $purge_defaults = { @@ -72,26 +79,13 @@ class apt::params { case $facts['os']['name']{ 'Debian': { - case $facts['os']['release']['full'] { - '6.0': { $backports = { - 'location' => 'http://httpredir.debian.org/debian-backports', + 'location' => 'http://deb.debian.org/debian', 'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', 'repos' => 'main contrib non-free', } - } - default: { - $backports = { - 'location' => 'http://httpredir.debian.org/debian', - 'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', - 'repos' => 'main contrib non-free', - } - } - } - $ppa_options = undef $ppa_package = undef - } 'Ubuntu': { $backports = { @@ -99,28 +93,11 @@ 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': { - $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"]') + fail(translate('Unable to determine value for fact os[\"name\"]')) } default: { $ppa_options = undef