11 lines
226 B
Puppet
11 lines
226 B
Puppet
# manage dselect, like
|
|
# suppressing the annoying help texts
|
|
class apt::dselect {
|
|
|
|
file_line { 'dselect_expert':
|
|
path => '/etc/dpkg/dselect.cfg',
|
|
line => 'expert',
|
|
}
|
|
|
|
package { 'dselect': ensure => installed }
|
|
}
|