aboutsummaryrefslogtreecommitdiff
path: root/manifests/dselect.pp
blob: 2b99a43d1f14b8ac503ce63426d943bd03c3b341 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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 }
}