X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fsource.pp;h=96c174c05e2539e25066198f3a931e36ac22e6af;hb=a8250aecfe56d56d1db99a81a71f18c8b28ae36e;hp=3d4011e26dda5bb352410bbc9d7720dfa3119737;hpb=e5f2dfe294a563f5ebcec3d31949a81e1815db6e;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/source.pp b/manifests/source.pp index 3d4011e..96c174c 100644 --- a/manifests/source.pp +++ b/manifests/source.pp @@ -1,63 +1,76 @@ # source.pp # add an apt source - define apt::source( - $location = '', - $release = $lsbdistcodename, - $repos = 'main', - $include_src = true, - $required_packages = false, - $key = false, - $key_server = 'keyserver.ubuntu.com', - $key_content = false, - $key_source = false, - $pin = false + $comment = $name, + $ensure = present, + $location = '', + $release = $::apt::xfacts['lsbdistcodename'], + $repos = 'main', + $include = {}, + $key = undef, + $pin = false, + $architecture = undef, + $allow_unsigned = false, ) { + validate_string($architecture, $comment, $location, $repos) + validate_bool($allow_unsigned) + validate_hash($include) - include apt::params - - $sources_list_d = $apt::params::sources_list_d - $provider = $apt::params::provider - - if $release == undef { + unless $release { fail('lsbdistcodename fact not available: release parameter required') } - file { "${name}.list": - ensure => file, - path => "${apt::params::sources_list_d}/${name}.list", - owner => root, - group => root, - mode => '0644', - content => template("${module_name}/source.list.erb"), - } + $_before = Apt::Setting["list-${title}"] + $_include = merge($::apt::include_defaults, $include) - if $pin != false { - apt::pin { $release: priority => $pin } -> File["${name}.list"] + 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 + } } - exec { "${name} apt update": - command => "${provider} update", - subscribe => File["${name}.list"], - refreshonly => true, + apt::setting { "list-${name}": + ensure => $ensure, + content => template('apt/_header.erb', 'apt/source.list.erb'), } - if $required_packages != false { - exec { "Required packages: '${required_packages}' for ${name}": - command => "${provider} -y install ${required_packages}", - subscribe => File["${name}.list"], - refreshonly => true, + if ($pin != false) { + # Get the host portion out of the url so we can pin to origin + $url_split = split($location, '/') + $host = $url_split[2] + + apt::pin { $name: + ensure => $ensure, + priority => $pin, + before => $_before, + origin => $host, } } - if $key != false { - 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"], + # 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}": + 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, + } } } }