diff options
author | LeLutin <gabster@lelutin.ca> | 2015-04-28 22:25:51 +0000 |
---|---|---|
committer | LeLutin <gabster@lelutin.ca> | 2015-04-28 22:25:51 +0000 |
commit | 5a9e3a456e8c9023222abb3ab08ae80323a1470a (patch) | |
tree | fa7897f9cc932a954662fb37b592aed8f8df719b | |
parent | 106413f957f34a56bc8d880ea1950b14be83381b (diff) | |
parent | 3dac57374f63ca6f0565f46feb5970fade960c6b (diff) | |
download | puppet-apt-5a9e3a456e8c9023222abb3ab08ae80323a1470a.tar.gz puppet-apt-5a9e3a456e8c9023222abb3ab08ae80323a1470a.tar.bz2 |
Merge branch 'master' into 'master'
updates for debian sources
There have been some recent changes in debian resulting in changes to sources
* jessie was released and very soon there will be a jessie-backports, so the backports logic needs to handle that
* the http.debian.net redirector has a new official url
See merge request !8
-rw-r--r-- | manifests/params.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/params.pp b/manifests/params.pp index 54fd13e..f977c27 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -4,11 +4,11 @@ class apt::params () { $use_volatile = false $include_src = false $use_next_release = false - $debian_url = 'http://http.debian.net/debian/' + $debian_url = 'http://httpredir.debian.org/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/' |