X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fsetting.pp;h=91835cb1b2b88f15387b276660e50a26828bed91;hb=ecb9bfe4edcb4c285c8c86e39ff047641b814b8e;hp=b0fb62b1debd8fb5d90c1f86cb0f0bdc5e778a7f;hpb=a531b2b4245f2df86ddf8a11e53568f43b6e1ffb;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/setting.pp b/manifests/setting.pp index b0fb62b..91835cb 100644 --- a/manifests/setting.pp +++ b/manifests/setting.pp @@ -1,12 +1,11 @@ define apt::setting ( - $priority = 50, - $ensure = file, - $source = undef, - $content = undef, - $notify_update = true, + Variant[String, Integer, Array] $priority = 50, + Optional[Enum['file', 'present', 'absent']] $ensure = file, + Optional[String] $source = undef, + Optional[String] $content = undef, + Boolean $notify_update = true, ) { - include 'apt::params' if $content and $source { fail('apt::setting cannot have both content and source') } @@ -15,26 +14,19 @@ define apt::setting ( fail('apt::setting needs either of content or source') } - validate_re($ensure, ['file', 'present', 'absent']) - validate_bool($notify_update) - $title_array = split($title, '-') $setting_type = $title_array[0] $base_name = join(delete_at($title_array, 0), '-') - validate_re($setting_type, ['\Aconf\z', '\Apref\z', '\Alist\z'], "apt::setting resource name/title must start with either 'conf-', 'pref-' or 'list-'") - - unless is_integer($priority) { - # need this to allow zero-padded priority. - validate_re($priority, '^\d+$', 'apt::setting priority must be an integer or a zero-padded integer') - } - - if $source { - validate_string($source) + assert_type(Pattern[/\Aconf\z/, /\Apref\z/, /\Alist\z/], $setting_type) |$a, $b| { + fail("apt::setting resource name/title must start with either 'conf-', 'pref-' or 'list-'") } - if $content { - validate_string($content) + if $priority !~ Integer { + # need this to allow zero-padded priority. + assert_type(Pattern[/^\d+$/], $priority) |$a, $b| { + fail('apt::setting priority must be an integer or a zero-padded integer') + } } if ($setting_type == 'list') or ($setting_type == 'pref') { @@ -43,8 +35,8 @@ define apt::setting ( $_priority = $priority } - $_path = $::apt::params::config_files[$setting_type]['path'] - $_ext = $::apt::params::config_files[$setting_type]['ext'] + $_path = $::apt::config_files[$setting_type]['path'] + $_ext = $::apt::config_files[$setting_type]['ext'] if $notify_update { $_notify = Class['apt::update']