module-apt/manifests/dselect.pp
2010-12-07 13:18:41 -05:00

10 lines
222 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 }
}