X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fsource.pp;h=163a411bb21f426f1ae1f43aeeffc4cd4c188464;hb=913a64e1fd9a383cfa39a2bb7487cb2e76d79fa1;hp=0ca52123190d9a06157331e7f38a11c907779415;hpb=0a178c338261e8b48121426e881be8c335d9ad72;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/source.pp b/manifests/source.pp index 0ca5212..163a411 100644 --- a/manifests/source.pp +++ b/manifests/source.pp @@ -1,39 +1,49 @@ # source.pp # add an apt source define apt::source( - $comment = $name, - $ensure = present, - $location = '', - $release = $::lsbdistcodename, - $repos = 'main', - $include_src = false, - $include_deb = true, - $key = undef, - $key_server = 'keyserver.ubuntu.com', - $key_content = undef, - $key_source = undef, - $pin = false, - $architecture = undef, - $trusted_source = false, + $location = undef, + $comment = $name, + $ensure = present, + $release = $::apt::xfacts['lsbdistcodename'], + $repos = 'main', + $include = {}, + $key = undef, + $pin = false, + $architecture = undef, + $allow_unsigned = false, ) { - validate_string($architecture, $comment, $location, $release, $repos, $key_server) - validate_bool($trusted_source, $include_src, $include_deb) + validate_string($architecture, $comment, $location, $repos) + validate_bool($allow_unsigned) + validate_hash($include) - if ! $release { + unless $release { fail('lsbdistcodename fact not available: release parameter required') } - file { "${name}.list": + 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) + + if $key { + if is_hash($key) { + 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 + } + } + + apt::setting { "list-${name}": ensure => $ensure, - path => "${::apt::sources_list_d}/${name}.list", - owner => root, - group => root, - mode => '0644', content => template('apt/_header.erb', 'apt/source.list.erb'), - notify => Exec['apt_update'], } - if ($pin != false) { # Get the host portion out of the url so we can pin to origin $url_split = split($location, '/') @@ -42,25 +52,29 @@ define apt::source( apt::pin { $name: ensure => $ensure, priority => $pin, - before => File["${name}.list"], + before => $_before, origin => $host, } } # We do not want to remove keys when the source is absent. if $key and ($ensure == 'present') { - apt::key { "Add key: ${key} from Apt::Source ${title}": - ensure => present, - key => $key, - key_server => $key_server, - key_content => $key_content, - key_source => $key_source, - before => File["${name}.list"], + if is_hash($_key) { + apt::key { "Add key: ${_key['id']} from Apt::Source ${title}": + ensure => present, + id => $_key['id'], + server => $_key['server'], + content => $_key['content'], + source => $_key['source'], + options => $_key['options'], + before => $_before, + } + } else { + apt::key { "Add key: ${_key} from Apt::Source ${title}": + ensure => present, + id => $_key, + before => $_before, + } } } - - # Need anchor to provide containment for dependencies. - anchor { "apt::source::${name}": - require => Class['apt::update'], - } }