aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-01-08 21:27:05 +0100
committermh <mh@immerda.ch>2014-01-08 21:27:05 +0100
commit4bd4dd254263003a404a1573abd50307b04057c8 (patch)
tree3b49f5e41843a4847ae4c3369e31a121316ae20b /manifests
parent128410f64363f717fc0d5a13faf769843a0b733c (diff)
downloadpuppet-apt-4bd4dd254263003a404a1573abd50307b04057c8.tar.gz
puppet-apt-4bd4dd254263003a404a1573abd50307b04057c8.tar.bz2
use stdlib instead of the common module
Diffstat (limited to 'manifests')
-rw-r--r--manifests/dselect.pp9
1 files changed, 5 insertions, 4 deletions
diff --git a/manifests/dselect.pp b/manifests/dselect.pp
index 6feeb9f..2b99a43 100644
--- a/manifests/dselect.pp
+++ b/manifests/dselect.pp
@@ -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 }