a084ac642c
The latter is only a wrapper around the former and it seems we want to remove the latter from our shared common module.
10 lines
204 B
Puppet
10 lines
204 B
Puppet
class apt::dselect {
|
|
|
|
# suppress annoying help texts of dselect
|
|
line { dselect_expert:
|
|
file => "/etc/dpkg/dselect.cfg",
|
|
line => "expert",
|
|
}
|
|
|
|
package { dselect: ensure => installed }
|
|
}
|