6691c2fade
Fix fail message
42 lines
1.1 KiB
Puppet
42 lines
1.1 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'
|
|
}
|
|
'wheezy': {
|
|
$backports_location = 'http://ftp.debian.org/debian/'
|
|
}
|
|
default: {
|
|
$backports_location = 'http://http.debian.net/debian/'
|
|
}
|
|
}
|
|
}
|
|
'ubuntu': {
|
|
case $::lsbdistcodename {
|
|
'precise','trusty': {
|
|
$backports_location = 'http://us.archive.ubuntu.com/ubuntu'
|
|
$ppa_options = '-y'
|
|
}
|
|
'lucid': {
|
|
$backports_location = 'http://us.archive.ubuntu.com/ubuntu'
|
|
$ppa_options = undef
|
|
}
|
|
default: {
|
|
$backports_location = 'http://old-releases.ubuntu.com/ubuntu'
|
|
$ppa_options = '-y'
|
|
}
|
|
}
|
|
}
|
|
default: {
|
|
fail("Unsupported lsbdistid (${::lsbdistid})")
|
|
}
|
|
}
|
|
}
|