X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fbackports.pp;h=eafa50692e54bf22ee229baca975ccf4bc282a6a;hb=60e50a9b65dec94fe20734404295e28d9e434a83;hp=e9180c48c22a80c69ff699e076ca482a46f621dd;hpb=32d312ea410d5572296b8baf2759899b90941392;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/backports.pp b/manifests/backports.pp index e9180c4..eafa506 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,13 +29,18 @@ # # 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 { + if ! is_integer($pin_priority) { + fail('$pin_priority must be an integer') + } + $release_real = downcase($release) $key = $::lsbdistid ? { - 'debian' => '55BE302B', + 'debian' => '46925553', 'ubuntu' => '437D05B5', } $repos = $::lsbdistid ? { @@ -43,6 +54,6 @@ class apt::backports( repos => $repos, key => $key, key_server => 'pgp.mit.edu', - pin => '200', + pin => $pin_priority, } }