blob: bfc6cb382b5ae40ad91b35369204bf979935bc75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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 => present;
}
}
|