X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=aeaf114dc7fe3ef1d13064e88429caf9b85912ef;hb=65904b214d98c899f390ac6908322fc06e3aca13;hp=5a0c170d9120ddc1ce14b62fe2e9167d10b4d216;hpb=3a202541085acde355d036f8ad016eab22498511;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index 5a0c170..aeaf114 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,45 +1,29 @@ +# Setting params for the module class apt::params { if $::osfamily != 'Debian' { - fail('This module only works on Debian or derivatives like Ubuntu') - } - - # Strict variables facts lookup compatibility - $xfacts = { - 'lsbdistcodename' => defined('$lsbdistcodename') ? { - true => $::lsbdistcodename, - default => undef, - }, - 'lsbdistrelease' => defined('$lsbdistrelease') ? { - true => $::lsbdistrelease, - default => undef, - }, - 'lsbmajdistrelease' => defined('$lsbmajdistrelease') ? { - true => $::lsbmajdistrelease, - default => undef, - }, - 'lsbdistdescription' => defined('$lsbdistdescription') ? { - true => $::lsbdistdescription, - default => undef, - }, - 'lsbminordistrelease' => defined('$lsbminordistrelease') ? { - true => $::lsbminordistrelease, - default => undef, - }, - 'lsbdistid' => defined('$lsbdistid') ? { - true => $::lsbdistid, - default => undef, - }, + 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" $keyserver = 'keyserver.ubuntu.com' + $confs = {} + $update = {} + $purge = {} + $proxy = {} + $sources = {} + $keys = {} + $ppas = {} + $pins = {} + $settings = {} + $auth_conf_entries = [] $config_files = { 'conf' => { @@ -48,7 +32,7 @@ class apt::params { }, 'pref' => { 'path' => $preferences_d, - 'ext' => '', + 'ext' => '.pref', }, 'list' => { 'path' => $sources_list_d, @@ -58,14 +42,17 @@ class apt::params { $update_defaults = { 'frequency' => 'reluctantly', + 'loglevel' => undef, 'timeout' => undef, 'tries' => undef, } $proxy_defaults = { - 'host' => undef, - 'port' => 8080, - 'https' => false, + 'ensure' => undef, + 'host' => undef, + 'port' => 8080, + 'https' => false, + 'direct' => false, } $purge_defaults = { @@ -87,53 +74,27 @@ class apt::params { 'src' => false, } - case $xfacts['lsbdistid'] { - 'debian': { - case $xfacts['lsbdistcodename'] { - 'squeeze': { + case $facts['os']['name']{ + 'Debian': { $backports = { - 'location' => 'http://backports.debian.org/debian-backports', + 'location' => 'http://deb.debian.org/debian', 'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', 'repos' => 'main contrib non-free', } - } - default: { - $backports = { - 'location' => 'http://ftp.debian.org/debian/', - 'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', - 'repos' => 'main contrib non-free', - } - } - } + $ppa_options = undef + $ppa_package = undef } - 'ubuntu': { + 'Ubuntu': { $backports = { 'location' => 'http://archive.ubuntu.com/ubuntu', 'key' => '630239CC130E1A7FD81A27B140976EAF437D05B5', 'repos' => 'main universe multiverse restricted', } - - case $xfacts['lsbdistcodename'] { - 'lucid': { - $ppa_options = undef - $ppa_package = 'python-software-properties' - } - 'precise': { - $ppa_options = '-y' - $ppa_package = 'python-software-properties' - } - 'trusty', 'utopic', 'vivid': { - $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 lsbdistid, is lsb-release installed?') + fail(translate('Unable to determine value for fact os[\"name\"]')) } default: { $ppa_options = undef