From: Matthias Pigulla Date: Wed, 2 Nov 2011 09:28:38 +0000 (+0100) Subject: Set the pin priority before adding the source (Fix #10449) X-Git-Tag: 0.0.1~15^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=864302a0915bebd522a2bf68b37e210ea243af17;p=puppet-modules%2Fpuppetlabs-apt.git Set the pin priority before adding the source (Fix #10449) --- diff --git a/manifests/source.pp b/manifests/source.pp index 56a8005..65afefd 100644 --- a/manifests/source.pp +++ b/manifests/source.pp @@ -26,7 +26,7 @@ define apt::source( } if $pin != false { - apt::pin { "${release}": priority => "${pin}" } + apt::pin { "${release}": priority => "${pin}" } -> File["${name}.list"] } exec { "${name} apt update":