X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fsource.pp;h=a95bc592f98d03749076786faae1f0932ff5da35;hb=dc3ead0ed5f4d735869565660c982983d379a519;hp=40fc015bb6e8a194038d50e1f7444cb0bfc965b8;hpb=75ac82ce6419af78f32adae6b50233cf90ac9319;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/source.pp b/manifests/source.pp index 40fc015..a95bc59 100644 --- a/manifests/source.pp +++ b/manifests/source.pp @@ -1,55 +1,75 @@ # source.pp # add an apt source define apt::source( - $location = undef, - $comment = $name, - $ensure = present, - $release = $::apt::xfacts['lsbdistcodename'], - $repos = 'main', - $include = {}, - $key = undef, - $pin = undef, - $architecture = undef, - $allow_unsigned = false, + Optional[String] $location = undef, + String $comment = $name, + String $ensure = present, + Optional[String] $release = undef, + String $repos = 'main', + Optional[Variant[Hash]] $include = {}, + Optional[Variant[String, Hash]] $key = undef, + Optional[Variant[Hash, Numeric, String]] $pin = undef, + Optional[String] $architecture = undef, + Boolean $allow_unsigned = false, + Boolean $notify_update = true, ) { - validate_string($architecture, $comment, $location, $repos) - validate_bool($allow_unsigned) - validate_hash($include) - unless $release { - fail('lsbdistcodename fact not available: release parameter required') + # This is needed for compat with 1.8.x + include ::apt + + $_before = Apt::Setting["list-${title}"] + + if !$release { + if $facts['lsbdistcodename'] { + $_release = $facts['lsbdistcodename'] + } else { + fail('lsbdistcodename fact not available: release parameter required') + } + } else { + $_release = $release } if $ensure == 'present' and ! $location { fail('cannot create a source entry without specifying a location') } - $_before = Apt::Setting["list-${title}"] - $_include = merge($::apt::include_defaults, $include) + $includes = merge($::apt::include_defaults, $include) if $key { - if is_hash($key) { + if $key =~ Hash { unless $key['id'] { fail('key hash must contain at least an id entry') } $_key = merge($::apt::source_key_defaults, $key) } else { - validate_string($key) - $_key = $key + $_key = { 'id' => assert_type(String[1], $key) } } } + $header = epp('apt/_header.epp') + + $sourcelist = epp('apt/source.list.epp', { + 'comment' => $comment, + 'includes' => $includes, + 'opt_architecture' => $architecture, + 'allow_unsigned' => $allow_unsigned, + 'location' => $location, + 'release' => $_release, + 'repos' => $repos, + }) + apt::setting { "list-${name}": - ensure => $ensure, - content => template('apt/_header.erb', 'apt/source.list.erb'), + ensure => $ensure, + content => "${header}${sourcelist}", + notify_update => $notify_update, } if $pin { - if is_hash($pin) { + if $pin =~ Hash { $_pin = merge($pin, { 'ensure' => $ensure, 'before' => $_before }) - } elsif (is_numeric($pin) or is_string($pin)) { - $url_split = split($location, '/') - $host = $url_split[2] + } elsif ($pin =~ Numeric or $pin =~ String) { + $url_split = split($location, '[:\/]+') + $host = $url_split[1] $_pin = { 'ensure' => $ensure, 'priority' => $pin, @@ -64,8 +84,8 @@ define apt::source( # We do not want to remove keys when the source is absent. if $key and ($ensure == 'present') { - if is_hash($_key) { - apt::key { "Add key: ${_key['id']} from Apt::Source ${title}": + if $_key =~ Hash { + apt::key { "Add key: ${$_key['id']} from Apt::Source ${title}": ensure => present, id => $_key['id'], server => $_key['server'], @@ -74,12 +94,6 @@ define apt::source( options => $_key['options'], before => $_before, } - } else { - apt::key { "Add key: ${_key} from Apt::Source ${title}": - ensure => present, - id => $_key, - before => $_before, - } } } }