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
19 lines
523 B
Puppet
19 lines
523 B
Puppet
class apt::listchanges(
|
|
$ensure_version = 'installed',
|
|
$config = "apt/${::operatingsystem}/listchanges_${::lsbdistcodename}.erb",
|
|
$frontend = 'mail',
|
|
$email = 'root',
|
|
$confirm = '0',
|
|
$saveseen = '/var/lib/apt/listchanges.db',
|
|
$which = 'both'
|
|
){
|
|
package { 'apt-listchanges': ensure => $ensure_version }
|
|
|
|
file { '/etc/apt/listchanges.conf':
|
|
content => template($apt::listchanges::config),
|
|
owner => root,
|
|
group => root,
|
|
mode => '0644',
|
|
require => Package['apt-listchanges'];
|
|
}
|
|
}
|