]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
invert the backports logic because squeeze and older were the exception and wheezy...
authorMatt Taggart <taggart@riseup.net>
Tue, 28 Apr 2015 18:57:23 +0000 (11:57 -0700)
committerMatt Taggart <taggart@riseup.net>
Tue, 28 Apr 2015 18:57:23 +0000 (11:57 -0700)
manifests/params.pp

index 54fd13e42a1adf6917abdee3401c0d649a75f233..35fa44fa1ced31d6652fc8ea73d1d6d24ae761e7 100644 (file)
@@ -7,8 +7,8 @@ class apt::params () {
   $debian_url = 'http://http.debian.net/debian/'
   $security_url = 'http://security.debian.org/'
   $backports_url = $::lsbdistcodename ? {
-    'wheezy' => $debian_url,
-    default  => 'http://backports.debian.org/debian-backports/',
+    'squeeze'  => 'http://backports.debian.org/debian-backports/',
+    default => $debian_url
   }
   $lts_url = $debian_url
   $volatile_url = 'http://volatile.debian.org/debian-volatile/'