X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fbackports.pp;h=a3ddb76e0078339b2721498f181866220cf1f6c9;hb=64f9c76a49cd73deb730cf468f54a9eda50a780b;hp=e9180c48c22a80c69ff699e076ca482a46f621dd;hpb=c683ae24d084cb9cf6bb3e7115393e7ef4be84f3;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/backports.pp b/manifests/backports.pp index e9180c4..a3ddb76 100644 --- a/manifests/backports.pp +++ b/manifests/backports.pp @@ -6,6 +6,12 @@ # The ubuntu/debian release name. Defaults to $lsbdistcodename. Setting this # manually can cause undefined behavior. (Read: universe exploding) # +# [*pin_priority*] +# _default_: 200 +# +# The priority that should be awarded by default to all packages coming from +# the Debian Backports project. +# # == Examples # # include apt::backports @@ -23,26 +29,54 @@ # # Copyright 2011 Puppet Labs Inc, unless otherwise noted. class apt::backports( - $release = $::lsbdistcodename, - $location = $apt::params::backports_location + $release = $::lsbdistcodename, + $location = $::apt::params::backports_location, + $pin_priority = 200, ) inherits apt::params { - $release_real = downcase($release) - $key = $::lsbdistid ? { - 'debian' => '55BE302B', + if ! is_integer($pin_priority) { + fail('$pin_priority must be an integer') + } + + if $::lsbdistid == 'LinuxMint' { + if $::lsbdistcodename == 'debian' { + $distid = 'debian' + $release_real = 'wheezy' + } else { + $distid = 'ubuntu' + $release_real = $::lsbdistcodename ? { + 'qiana' => 'trusty', + 'petra' => 'saucy', + 'olivia' => 'raring', + 'nadia' => 'quantal', + 'maya' => 'precise', + } + } + } else { + $distid = $::lsbdistid + $release_real = downcase($release) + } + + $key = $distid ? { + 'debian' => '46925553', 'ubuntu' => '437D05B5', } - $repos = $::lsbdistid ? { + $repos = $distid ? { 'debian' => 'main contrib non-free', 'ubuntu' => 'main universe multiverse restricted', } + apt::pin { 'backports': + before => Apt::Source['backports'], + release => "${release_real}-backports", + priority => $pin_priority, + } + apt::source { 'backports': location => $location, release => "${release_real}-backports", repos => $repos, key => $key, key_server => 'pgp.mit.edu', - pin => '200', } }