X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fbackports.pp;h=0ef45333d5ae87b3cf7debd89d18b32bdf05432a;hb=refs%2Fheads%2Frelease-prep;hp=a3ddb76e0078339b2721498f181866220cf1f6c9;hpb=64f9c76a49cd73deb730cf468f54a9eda50a780b;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/backports.pp b/manifests/backports.pp index a3ddb76..0ef4533 100644 --- a/manifests/backports.pp +++ b/manifests/backports.pp @@ -1,82 +1,116 @@ -# This adds the necessary components to get backports for ubuntu and debian +# @summary Manages backports. # -# == Parameters +# @example Set up a backport source for Linux Mint qiana +# class { 'apt::backports': +# location => 'http://us.archive.ubuntu.com/ubuntu', +# release => 'trusty-backports', +# repos => 'main universe multiverse restricted', +# key => { +# id => '630239CC130E1A7FD81A27B140976EAF437D05B5', +# server => 'keyserver.ubuntu.com', +# }, +# } # -# [*release*] -# The ubuntu/debian release name. Defaults to $lsbdistcodename. Setting this -# manually can cause undefined behavior. (Read: universe exploding) +# @param location +# Specifies an Apt repository containing the backports to manage. Valid options: a string containing a URL. Default value for Debian and +# Ubuntu varies: # -# [*pin_priority*] -# _default_: 200 +# - Debian: 'http://deb.debian.org/debian' # -# The priority that should be awarded by default to all packages coming from -# the Debian Backports project. +# - Ubuntu: 'http://archive.ubuntu.com/ubuntu' # -# == Examples +# @param release +# Specifies a distribution of the Apt repository containing the backports to manage. Used in populating the `source.list` configuration file. +# Default: on Debian and Ubuntu, `${fact('os.distro.codename')}-backports`. We recommend keeping this default, except on other operating +# systems. # -# include apt::backports +# @param repos +# Specifies a component of the Apt repository containing the backports to manage. Used in populating the `source.list` configuration file. +# Default value for Debian and Ubuntu varies: # -# class { 'apt::backports': -# release => 'natty', -# } +# - Debian: 'main contrib non-free' +# +# - Ubuntu: 'main universe multiverse restricted' # -# == Authors +# @param key +# Specifies a key to authenticate the backports. Valid options: a string to be passed to the id parameter of the apt::key defined type, or a +# hash of parameter => value pairs to be passed to apt::key's id, server, content, source, and/or options parameters. Default value +# for Debian and Ubuntu varies: # -# Ben Hughes, I think. At least blame him if this goes wrong. -# I just added puppet doc. +# - Debian: 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553' # -# == Copyright +# - Ubuntu: '630239CC130E1A7FD81A27B140976EAF437D05B5' # -# Copyright 2011 Puppet Labs Inc, unless otherwise noted. -class apt::backports( - $release = $::lsbdistcodename, - $location = $::apt::params::backports_location, - $pin_priority = 200, -) inherits apt::params { +# @param pin +# Specifies a pin priority for the backports. Valid options: a number or string to be passed to the `id` parameter of the `apt::pin` defined +# type, or a hash of `parameter => value` pairs to be passed to `apt::pin`'s corresponding parameters. +# +# @param include +# Specifies whether to include 'deb' or 'src', or both. +# +class apt::backports ( + Optional[String] $location = undef, + Optional[String] $release = undef, + Optional[String] $repos = undef, + Optional[Variant[String, Hash]] $key = undef, + Variant[Integer, String, Hash] $pin = 200, + Variant[Hash] $include = {}, +) { + include apt - if ! is_integer($pin_priority) { - fail('$pin_priority must be an integer') + if $location { + $_location = $location } - - if $::lsbdistid == 'LinuxMint' { - if $::lsbdistcodename == 'debian' { - $distid = 'debian' - $release_real = 'wheezy' + if $release { + $_release = $release + } + if $repos { + $_repos = $repos + } + if $key { + $_key = $key + } + if (!($facts['os']['name'] == 'Debian' or $facts['os']['name'] == 'Ubuntu')) { + unless $location and $release and $repos and $key { + fail('If not on Debian or Ubuntu, you must explicitly pass location, release, repos, and key') + } + } + unless $location { + $_location = $apt::backports['location'] + } + unless $release { + if fact('os.distro.codename') { + $_release = "${fact('os.distro.codename')}-backports" } else { - $distid = 'ubuntu' - $release_real = $::lsbdistcodename ? { - 'qiana' => 'trusty', - 'petra' => 'saucy', - 'olivia' => 'raring', - 'nadia' => 'quantal', - 'maya' => 'precise', - } + fail('os.distro.codename fact not available: release parameter required') } - } else { - $distid = $::lsbdistid - $release_real = downcase($release) } - - $key = $distid ? { - 'debian' => '46925553', - 'ubuntu' => '437D05B5', + unless $repos { + $_repos = $apt::backports['repos'] } - $repos = $distid ? { - 'debian' => 'main contrib non-free', - 'ubuntu' => 'main universe multiverse restricted', + unless $key { + $_key = $apt::backports['key'] } - apt::pin { 'backports': - before => Apt::Source['backports'], - release => "${release_real}-backports", - priority => $pin_priority, + if $pin =~ Hash { + $_pin = $pin + } elsif $pin =~ Numeric or $pin =~ String { + # apt::source defaults to pinning to origin, but we should pin to release + # for backports + $_pin = { + 'priority' => $pin, + 'release' => $_release, + } + } else { + fail('pin must be either a string, number or hash') } apt::source { 'backports': - location => $location, - release => "${release_real}-backports", - repos => $repos, - key => $key, - key_server => 'pgp.mit.edu', + location => $_location, + release => $_release, + repos => $_repos, + include => $include, + key => $_key, + pin => $_pin, } }