blob: e64bb1b74882abdfeb2497548b678d8a7a659741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class apt::listchanges(
$ensure_version = 'installed',
$config = "apt/${::operatingsystem}/listchanges_${::debian_codename}.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'];
}
}
|