X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=ed698e72bed8bba502d2081483e3052b2103d0c6;hb=f8cc762122f62cacc603196c334efcbaaeb779d5;hp=79989c08a45f57c3566c0b50499070f54bff76ca;hpb=e5f2dfe294a563f5ebcec3d31949a81e1815db6e;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index 79989c0..ed698e7 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -5,17 +5,17 @@ class apt::params { $apt_conf_d = "${root}/apt.conf.d" $preferences_d = "${root}/preferences.d" - case $lsbdistid { + case $::lsbdistid { 'debian': { $backports_location = 'http://backports.debian.org/debian-backports' } 'ubuntu': { - case $lsbdistcodename { + case $::lsbdistcodename { 'hardy','lucid','maverick','natty','oneiric','precise': { - $backports_location = http://us.archive.ubuntu.com/ubuntuk + $backports_location = 'http://us.archive.ubuntu.com/ubuntu' } default: { - $backports_location = 'http://old-releases.ubuntu.com/ubuntu', + $backports_location = 'http://old-releases.ubuntu.com/ubuntu' } } }