diff options
author | Matt Taggart <taggart@riseup.net> | 2015-04-28 11:57:23 -0700 |
---|---|---|
committer | Matt Taggart <taggart@riseup.net> | 2015-04-28 11:57:23 -0700 |
commit | 5532df22f12655ddb7f99f5eee2fe05e8c953444 (patch) | |
tree | 6ab7a7450206856de28493d87ebf0a756c5032e0 | |
parent | 106413f957f34a56bc8d880ea1950b14be83381b (diff) | |
download | puppet-apt-5532df22f12655ddb7f99f5eee2fe05e8c953444.tar.gz puppet-apt-5532df22f12655ddb7f99f5eee2fe05e8c953444.tar.bz2 |
invert the backports logic because squeeze and older were the exception and wheezy and newer the default
-rw-r--r-- | manifests/params.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/params.pp b/manifests/params.pp index 54fd13e..35fa44f 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -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/' |