use stdlib instead of the common module

This commit is contained in:
mh 2014-01-08 21:27:05 +01:00
parent 128410f643
commit 4bd4dd2542

View file

@ -1,9 +1,10 @@
# manage dselect, like
# suppressing the annoying help texts
class apt::dselect {
# suppress annoying help texts of dselect
line { 'dselect_expert':
file => '/etc/dpkg/dselect.cfg',
line => 'expert',
file_line { 'dselect_expert':
path => '/etc/dpkg/dselect.cfg',
line => 'expert',
}
package { 'dselect': ensure => installed }