blob: 6feeb9f7b0d28008e8aaeeb10d4ef672e612e0da (
plain)
1
2
3
4
5
6
7
8
9
10
|
class apt::dselect {
# suppress annoying help texts of dselect
line { 'dselect_expert':
file => '/etc/dpkg/dselect.cfg',
line => 'expert',
}
package { 'dselect': ensure => installed }
}
|