59 lines
1.4 KiB
Puppet
59 lines
1.4 KiB
Puppet
class apt::backports (
|
|
$location = undef,
|
|
$release = undef,
|
|
$repos = undef,
|
|
$key = undef,
|
|
$pin = 200,
|
|
) inherits apt::params {
|
|
if $location {
|
|
validate_string($location)
|
|
$_location = $location
|
|
}
|
|
if $release {
|
|
validate_string($release)
|
|
$_release = $release
|
|
}
|
|
if $repos {
|
|
validate_string($repos)
|
|
$_repos = $repos
|
|
}
|
|
if $key {
|
|
unless is_hash($key) {
|
|
validate_string($key)
|
|
}
|
|
$_key = $key
|
|
}
|
|
unless is_hash($pin) {
|
|
unless (is_numeric($pin) or is_string($pin)) {
|
|
fail('pin must be either a string, number or hash')
|
|
}
|
|
}
|
|
|
|
if ($::apt::params::xfacts['lsbdistid'] == 'debian' or $::apt::params::xfacts['lsbdistid'] == 'ubuntu') {
|
|
unless $location {
|
|
$_location = $::apt::params::backports['location']
|
|
}
|
|
unless $release {
|
|
$_release = "${::apt::params::xfacts['lsbdistcodename']}-backports"
|
|
}
|
|
unless $repos {
|
|
$_repos = $::apt::params::backports['repos']
|
|
}
|
|
unless $key {
|
|
$_key = $::apt::params::backports['key']
|
|
}
|
|
} else {
|
|
unless $location and $release and $repos and $key {
|
|
fail('If not on Debian or Ubuntu, you must explicitly pass location, release, repos, and key')
|
|
}
|
|
}
|
|
|
|
apt::source { 'backports':
|
|
location => $_location,
|
|
release => $_release,
|
|
repos => $_repos,
|
|
key => $_key,
|
|
pin => $pin,
|
|
}
|
|
|
|
}
|