module-apt/manifests/listchanges.pp

39 lines
952 B
ObjectPascal
Raw Normal View History

class apt::listchanges {
case $apt_listchanges_version {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_version = "present" }
}
case $apt_listchanges_config {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_config = "apt/${operatingsystem}/listchanges_${lsbdistcodename}.erb" }
}
case $apt_listchanges_frontend {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_frontend = "mail" }
}
case $apt_listchanges_email {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_email = "root" }
}
case $apt_listchanges_confirm {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_confirm = "0" }
}
case $apt_listchanges_saveseen {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_saveseen = "/var/lib/apt/listchanges.db" }
}
case $apt_listchanges_which {
2010-12-15 22:11:34 +01:00
'': { $apt_listchanges_which = "both" }
}
package { apt-listchanges: ensure => $apt_listchanges_ensure_version }
file { "/etc/apt/listchanges.conf":
content => template($apt_listchanges_config),
mode => 0644, owner => root, group => root,
require => Package["apt-listchanges"];
}
}