X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=ae656dbf8f7fde2a8eb5f8c0b94cacf1b629661b;hb=55f5f7e2e9b534668a5b125ec2f09f6c24bfc346;hp=149e4c96d86ca65ae6820639d6dc193a4909093f;hpb=ee7d7762d434d2a7409030e0e4c746aa9ec65b53;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index 149e4c9..ae656db 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,35 +1,36 @@ # @summary Provides defaults for the Apt module parameters. -# +# # @api private # class apt::params { - if $::osfamily != 'Debian' { - fail(translate('This module only works on Debian or derivatives like Ubuntu')) + if $facts['os']['family'] != 'Debian' { + fail('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" - $apt_conf_d = "${root}/apt.conf.d" - $keyserver = 'keyserver.ubuntu.com' - $key_options = undef - $confs = {} - $update = {} - $purge = {} - $proxy = {} - $sources = {} - $keys = {} - $ppas = {} - $pins = {} - $settings = {} - $manage_auth_conf = true - $auth_conf_entries = [] + $root = '/etc/apt' + $provider = '/usr/bin/apt-get' + $sources_list = "${root}/sources.list" + $sources_list_force = false + $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" + $apt_conf_d = "${root}/apt.conf.d" + $keyserver = 'keyserver.ubuntu.com' + $key_options = undef + $confs = {} + $update = {} + $purge = {} + $proxy = {} + $sources = {} + $keys = {} + $ppas = {} + $pins = {} + $settings = {} + $manage_auth_conf = true + $auth_conf_entries = [] $config_files = { 'conf' => { @@ -70,13 +71,6 @@ class apt::params { 'apt.conf.d' => false, } - $source_key_defaults = { - 'server' => $keyserver, - 'options' => undef, - 'content' => undef, - 'source' => undef, - } - $include_defaults = { 'deb' => true, 'src' => false, @@ -90,11 +84,7 @@ class apt::params { } $ppa_options = undef $ppa_package = undef - if versioncmp($facts['os']['release']['major'], '9') >= 0 { - $auth_conf_owner = '_apt' - } else { - $auth_conf_owner = 'root' - } + $auth_conf_owner = '_apt' } 'Ubuntu': { $backports = { @@ -104,14 +94,10 @@ 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' - } + $auth_conf_owner = '_apt' } undef: { - fail(translate('Unable to determine value for fact os[\"name\"]')) + fail('Unable to determine value for fact os[\"name\"]') } default: { $ppa_options = undef