X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=52b9bca3fcaa231c6f9a4ab997df448cd7a1e9e9;hb=63a31232cda06727a35350bd1e1318e6ae0a9111;hp=b0ad60c71ada96d8aa812aa5518c353c0b8155b9;hpb=630580d1ce3c609865e31598198e7c55dda9a6ef;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index b0ad60c..52b9bca 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,14 +1,18 @@ -# 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' $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" @@ -22,6 +26,7 @@ class apt::params { $ppas = {} $pins = {} $settings = {} + $manage_auth_conf = true $auth_conf_entries = [] $config_files = { @@ -93,7 +98,7 @@ class apt::params { $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