invert the backports logic because squeeze and older were the exception and wheezy and newer the default
This commit is contained in:
parent
106413f957
commit
5532df22f1
1 changed files with 2 additions and 2 deletions
|
@ -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/'
|
||||
|
|
Loading…
Reference in a new issue