3684f88372
Move apt-get update exec to a seperate class to minimize the number of apt-get updates invoked by configuration changes. * remove apt_update exec resource in apt class. * remove apt-get-${name} in defines. * apt::source notify Exec['apt update']. * Remove dependency to Exec['apt_update']. * fix rspec-puppet tests. Conflicts: manifests/source.pp
45 lines
1.1 KiB
Puppet
45 lines
1.1 KiB
Puppet
# This adds the necessary components to get backports for ubuntu and debian
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*release*]
|
|
# The ubuntu/debian release name. Defaults to $lsbdistcodename. Setting this
|
|
# manually can cause undefined behavior. (Read: universe exploding)
|
|
#
|
|
# == Examples
|
|
#
|
|
# include apt::backports
|
|
#
|
|
# class { 'apt::backports':
|
|
# release => 'natty',
|
|
# }
|
|
#
|
|
# == Authors
|
|
#
|
|
# Ben Hughes, I think. At least blame him if this goes wrong. I just added puppet doc.
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2011 Puppet Labs Inc, unless otherwise noted.
|
|
class apt::backports(
|
|
$release = $::lsbdistcodename,
|
|
$location = $apt::params::backports_location
|
|
) inherits apt::params {
|
|
|
|
$release_real = downcase($release)
|
|
|
|
apt::source { 'backports.list':
|
|
location => $location,
|
|
release => "${release_real}-backports",
|
|
repos => $::lsbdistid ? {
|
|
'debian' => 'main contrib non-free',
|
|
'ubuntu' => 'universe multiverse restricted',
|
|
},
|
|
key => $::lsbdistid ? {
|
|
'debian' => '55BE302B',
|
|
'ubuntu' => '437D05B5',
|
|
},
|
|
key_server => 'pgp.mit.edu',
|
|
pin => '200',
|
|
}
|
|
}
|