X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=58ce9ed2831939e848e543200610a6b171169b07;hb=d850a7d5480768881f79371dd0678ddd991d7548;hp=c954aa36dc4335b28346fa47028df6839f720b22;hpb=ca31cab98756aa2ed40cc4dc717ab6bbdb3e2afe;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index c954aa3..58ce9ed 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,27 +1,36 @@ -# Setting params for the module +# @summary Provides defaults for the Apt module parameters. +# +# @api private +# class apt::params { - if $::osfamily != 'Debian' { + 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" - $conf_d = "${root}/apt.conf.d" - $preferences = "${root}/preferences" - $preferences_d = "${root}/preferences.d" - $keyserver = 'keyserver.ubuntu.com' - $confs = {} - $update = {} - $purge = {} - $proxy = {} - $sources = {} - $keys = {} - $ppas = {} - $pins = {} - $settings = {} + $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' => { @@ -46,11 +55,12 @@ class apt::params { } $proxy_defaults = { - 'ensure' => undef, - 'host' => undef, - 'port' => 8080, - 'https' => false, - 'direct' => false, + 'ensure' => undef, + 'host' => undef, + 'port' => 8080, + 'https' => false, + 'https_acng' => false, + 'direct' => false, } $purge_defaults = { @@ -58,13 +68,7 @@ class apt::params { 'sources.list.d' => false, 'preferences' => false, 'preferences.d' => false, - } - - $source_key_defaults = { - 'server' => $keyserver, - 'options' => undef, - 'content' => undef, - 'source' => undef, + 'apt.conf.d' => false, } $include_defaults = { @@ -76,11 +80,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 = { @@ -90,14 +98,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('Unable to determine value for fact os[\"name\"]') } default: { $ppa_options = undef $ppa_package = undef $backports = undef + $auth_conf_owner = 'root' } } }