]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
use stdlib instead of the common module
authormh <mh@immerda.ch>
Wed, 8 Jan 2014 20:27:05 +0000 (21:27 +0100)
committermh <mh@immerda.ch>
Wed, 8 Jan 2014 20:27:05 +0000 (21:27 +0100)
manifests/dselect.pp

index 6feeb9f7b0d28008e8aaeeb10d4ef672e612e0da..2b99a43d1f14b8ac503ce63426d943bd03c3b341 100644 (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 }