X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=b0c367ca109cb4858df14ee0fbcdc56263d19332;hb=a2af17f31baf17817c0acf2820100f5ee4e6ae47;hp=479ac122358b44bc0aff9639d336904b33a65e94;hpb=e99d83c2d6bdd45a9111eab0306da105c1f2acca;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index 479ac12..b0c367c 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,8 +1,11 @@ -# Setting params for the module +# @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' @@ -13,7 +16,9 @@ class apt::params { $conf_d = "${root}/apt.conf.d" $preferences = "${root}/preferences" $preferences_d = "${root}/preferences.d" + $apt_conf_d = "${root}/apt.conf.d" $keyserver = 'keyserver.ubuntu.com' + $key_options = undef $confs = {} $update = {} $purge = {} @@ -23,6 +28,7 @@ class apt::params { $ppas = {} $pins = {} $settings = {} + $manage_auth_conf = true $auth_conf_entries = [] $config_files = { @@ -60,6 +66,7 @@ class apt::params { 'sources.list.d' => false, 'preferences' => false, 'preferences.d' => false, + 'apt.conf.d' => false, } $source_key_defaults = { @@ -78,11 +85,15 @@ class apt::params { 'Debian': { $backports = { 'location' => 'http://deb.debian.org/debian', - 'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', 'repos' => 'main contrib non-free', } $ppa_options = undef $ppa_package = undef + if versioncmp($facts['os']['release']['major'], '9') >= 0 { + $auth_conf_owner = '_apt' + } else { + $auth_conf_owner = 'root' + } } 'Ubuntu': { $backports = { @@ -92,14 +103,20 @@ class apt::params { } $ppa_options = '-y' $ppa_package = 'software-properties-common' + if versioncmp($facts['os']['release']['full'], '16.04') >= 0 { + $auth_conf_owner = '_apt' + } else { + $auth_conf_owner = 'root' + } } undef: { - fail('Unable to determine value for fact os["name"]') + fail(translate('Unable to determine value for fact os[\"name\"]')) } default: { $ppa_options = undef $ppa_package = undef $backports = undef + $auth_conf_owner = 'root' } } }