From: intrigeri Date: Wed, 20 Mar 2013 21:11:46 +0000 (+0100) Subject: Use the main Debian archive's URL as the default URL for backports on Wheezy. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=46c58b07bfd6d6d6ed4bc4139ed4fd14bfe8ada3;p=puppet-apt.git Use the main Debian archive's URL as the default URL for backports on Wheezy. The backports are now fully integrated with the main archive. See: https://labs.riseup.net/code/issues/4270 https://lists.debian.org/debian-devel-announce/2013/03/msg00007.html --- diff --git a/manifests/params.pp b/manifests/params.pp index f71570b..b210ff6 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -5,7 +5,10 @@ class apt::params () { $use_next_release = false $debian_url = 'http://http.debian.net/debian/' $security_url = 'http://security.debian.org/' - $backports_url = 'http://backports.debian.org/debian-backports/' + $backports_url = $::lsbdistcodename ? { + 'wheezy' => $debian_url, + default => 'http://backports.debian.org/debian-backports/', + } $volatile_url = 'http://volatile.debian.org/debian-volatile/' $ubuntu_url = 'http://archive.ubuntu.com/ubuntu' $repos = 'auto'