module-apt/manifests/dselect.pp
2010-10-17 02:54:20 +02:00

9 lines
221 B
Puppet

class apt::dselect {
# suppress annoying help texts of dselect
append_if_no_such_line { dselect_expert:
file => "/etc/dpkg/dselect.cfg",
line => "expert",
}
package { dselect: ensure => installed }
}