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
This commit is contained in:
parent
5ec8ffb4ef
commit
46c58b07bf
1 changed files with 4 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue