ded81d8edc
Signed-off-by: Gabriel Filion <lelutin@gmail.com> + more linting by intrigeri. Conflicts: manifests/apticron.pp manifests/cron/dist_upgrade.pp manifests/cron/download.pp manifests/dist_upgrade/initiator.pp manifests/init.pp manifests/listchanges.pp manifests/preferences.pp manifests/preseeded_package.pp manifests/proxy_client.pp manifests/unattended_upgrades.pp manifests/update.pp
20 lines
588 B
Puppet
20 lines
588 B
Puppet
class apt::preferences {
|
|
|
|
$pref_contents = $apt::custom_preferences ? {
|
|
'' => $::operatingsystem ? {
|
|
'debian' => template("apt/${::operatingsystem}/preferences_${apt::codename}.erb"),
|
|
'ubuntu' => template("apt/${::operatingsystem}/preferences_${apt::codename}.erb"),
|
|
},
|
|
default => $apt::custom_preferences
|
|
}
|
|
|
|
file { '/etc/apt/preferences':
|
|
ensure => present,
|
|
alias => 'apt_config',
|
|
# only update together
|
|
content => $pref_contents,
|
|
require => File['/etc/apt/sources.list'],
|
|
owner => root, group => 0, mode => '0644';
|
|
}
|
|
|
|
}
|