summaryrefslogtreecommitdiff
path: root/manifests/dselect.pp
blob: beee9ee15708ebbbadee896d6d5419fdc4f2311e (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;
  }
}