summaryrefslogtreecommitdiff
path: root/manifests/dselect.pp
blob: 2e6e90b96809e8d3378a88ec29c51f740cb7c136 (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 => installed
  }
}