X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fsource.pp;h=be743eb26ca207fc9a3c2b09f82a52caff3ae494;hb=a06eece5526b8838bcdd0a5f9b649b95727e09d7;hp=9f31fe91308bbb911b5013a21227b17e4f0e11db;hpb=fab62e6de7510c2660c63e385f6553ed69d30e75;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/source.pp b/manifests/source.pp index 9f31fe9..be743eb 100644 --- a/manifests/source.pp +++ b/manifests/source.pp @@ -1,60 +1,99 @@ # source.pp # add an apt source - define apt::source( - $location = '', - $release = 'karmic', - $repos = 'main', - $include_src = true, - $required_packages = false, - $key = false, - $key_server = 'keyserver.ubuntu.com', - $pin = false, - $key_content = 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, + $pin = undef, + Optional[String] $architecture = undef, + Boolean $allow_unsigned = false, + Boolean $notify_update = true, ) { - include apt::params + # This is needed for compat with 1.8.x + include ::apt - file { "${name}.list": - path => "${apt::params::root}/sources.list.d/${name}.list", - ensure => file, - owner => root, - group => root, - mode => 644, - content => template("apt/source.list.erb"), + $_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 $pin != false { - apt::pin { "${release}": priority => "${pin}" } -> File["${name}.list"] + if $ensure == 'present' and ! $location { + fail('cannot create a source entry without specifying a location') } - exec { "${name} apt update": - command => "${apt::params::provider} update", - subscribe => File["${name}.list"], - refreshonly => true, - } + $includes = merge($::apt::include_defaults, $include) - if $required_packages != false { - exec { "Required packages: '${required_packages}' for ${name}": - command => "${apt::params::provider} -y install ${required_packages}", - subscribe => File["${name}.list"], - refreshonly => true, + 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_legacy(String, 'validate_string', $key) + $_key = { 'id' => $key } } } - if $key != false { - if $key_content { - exec { "Add key: ${key} from content for ${name}": - command => "/bin/echo '${key_content}' | /usr/bin/apt-key add -", - unless => "/usr/bin/apt-key list | /bin/grep '${key}'", - before => File["${name}.list"], + $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 => "${header}${sourcelist}", + notify_update => $notify_update, + } + + if $pin { + if is_hash($pin) { + $_pin = merge($pin, { 'ensure' => $ensure, 'before' => $_before }) + } elsif (is_numeric($pin) or is_string($pin)) { + $url_split = split($location, '[:\/]+') + $host = $url_split[1] + $_pin = { + 'ensure' => $ensure, + 'priority' => $pin, + 'before' => $_before, + 'origin' => $host, } } else { - exec { "Add key: ${key} from ${key_server} for ${name}": - command => "/usr/bin/apt-key adv --keyserver ${key_server} --recv-keys ${key}", - unless => "/usr/bin/apt-key list | /bin/grep ${key}", - before => File["${name}.list"], + fail('Received invalid value for pin parameter') + } + create_resources('apt::pin', { "${name}" => $_pin }) + } + + # 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, } } }