invert the backports logic because squeeze and older were the exception and wheezy and newer the default

This commit is contained in:
Matt Taggart 2015-04-28 11:57:23 -07:00
parent 106413f957
commit 5532df22f1

View 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/'