64b8eb1e4a
Adds spec test If lab-release is not installed, then the end user sees a confusing/ vague message Error: Unsupported lsbdistid () at /modules/apt/manifests/params.pp:52 It is common for docker containers to not include this package by default After fix, the user sees a friendlier message if lab-release is not installed Error: Unable to determine lsbdistid, is lsb-release installed? at /modules/apt/manifests/params.pp:52
59 lines
2 KiB
Puppet
59 lines
2 KiB
Puppet
class apt::params {
|
|
$root = '/etc/apt'
|
|
$provider = '/usr/bin/apt-get'
|
|
$sources_list_d = "${root}/sources.list.d"
|
|
$apt_conf_d = "${root}/apt.conf.d"
|
|
$preferences_d = "${root}/preferences.d"
|
|
|
|
case $::lsbdistid {
|
|
'debian': {
|
|
case $::lsbdistcodename {
|
|
'squeeze': {
|
|
$backports_location = 'http://backports.debian.org/debian-backports'
|
|
$legacy_origin = true
|
|
$origins = ['${distro_id} oldstable',
|
|
'${distro_id} ${distro_codename}-security',
|
|
'${distro_id} ${distro_codename}-lts']
|
|
}
|
|
'wheezy': {
|
|
$backports_location = 'http://ftp.debian.org/debian/'
|
|
$legacy_origin = false
|
|
$origins = ['origin=Debian,archive=stable,label=Debian-Security']
|
|
}
|
|
default: {
|
|
$backports_location = 'http://http.debian.net/debian/'
|
|
$legacy_origin = false
|
|
$origins = ['origin=Debian,archive=stable,label=Debian-Security']
|
|
}
|
|
}
|
|
}
|
|
'ubuntu': {
|
|
case $::lsbdistcodename {
|
|
'lucid': {
|
|
$backports_location = 'http://us.archive.ubuntu.com/ubuntu'
|
|
$ppa_options = undef
|
|
$legacy_origin = true
|
|
$origins = ['${distro_id} ${distro_codename}-security']
|
|
}
|
|
'precise', 'trusty': {
|
|
$backports_location = 'http://us.archive.ubuntu.com/ubuntu'
|
|
$ppa_options = '-y'
|
|
$legacy_origin = true
|
|
$origins = ['${distro_id}:${distro_codename}-security']
|
|
}
|
|
default: {
|
|
$backports_location = 'http://old-releases.ubuntu.com/ubuntu'
|
|
$ppa_options = '-y'
|
|
$legacy_origin = true
|
|
$origins = ['${distro_id}:${distro_codename}-security']
|
|
}
|
|
}
|
|
}
|
|
'': {
|
|
fail('Unable to determine lsbdistid, is lsb-release installed?')
|
|
}
|
|
default: {
|
|
fail("Unsupported lsbdistid (${::lsbdistid})")
|
|
}
|
|
}
|
|
}
|