Added modules
This commit is contained in:
parent
c53c931217
commit
59ec520742
646 changed files with 35182 additions and 0 deletions
55
modules/apt/manifests/params.pp
Normal file
55
modules/apt/manifests/params.pp
Normal file
|
@ -0,0 +1,55 @@
|
|||
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']
|
||||
}
|
||||
'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']
|
||||
}
|
||||
}
|
||||
}
|
||||
default: {
|
||||
fail("Unsupported lsbdistid (${::lsbdistid})")
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue