X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fbackports.pp;h=e9180c48c22a80c69ff699e076ca482a46f621dd;hb=add5060d643bba7c26e03a270365bdbf21d28283;hp=ecc75048e6c10ff523dbb20355a7d6ab4cbc5374;hpb=669f5b51fb429fb29e0b5698fa4dadd74ac74cfb;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/backports.pp b/manifests/backports.pp index ecc7504..e9180c4 100644 --- a/manifests/backports.pp +++ b/manifests/backports.pp @@ -16,7 +16,8 @@ # # == Authors # -# Ben Hughes, I think. At least blame him if this goes wrong. I just added puppet doc. +# Ben Hughes, I think. At least blame him if this goes wrong. +# I just added puppet doc. # # == Copyright # @@ -27,18 +28,20 @@ class apt::backports( ) inherits apt::params { $release_real = downcase($release) + $key = $::lsbdistid ? { + 'debian' => '55BE302B', + 'ubuntu' => '437D05B5', + } + $repos = $::lsbdistid ? { + 'debian' => 'main contrib non-free', + 'ubuntu' => 'main universe multiverse restricted', + } - apt::source { 'backports.list': + apt::source { 'backports': location => $location, release => "${release_real}-backports", - repos => $::lsbdistid ? { - 'debian' => 'main contrib non-free', - 'ubuntu' => 'universe multiverse restricted', - }, - key => $::lsbdistid ? { - 'debian' => '55BE302B', - 'ubuntu' => '437D05B5', - }, + repos => $repos, + key => $key, key_server => 'pgp.mit.edu', pin => '200', }