]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
use correct references for new concat usage
authormh <mh@immerda.ch>
Fri, 5 Aug 2011 09:22:05 +0000 (11:22 +0200)
committermh <mh@immerda.ch>
Fri, 5 Aug 2011 09:22:05 +0000 (11:22 +0200)
README
manifests/init.pp
manifests/unattended_upgrades.pp

diff --git a/README b/README
index ba287d97d91b0b01c34b26806357f64551438372..1b01f88d1c6d6c7b03d883358ad71e3e177c35fb 100644 (file)
--- a/README
+++ b/README
@@ -370,7 +370,7 @@ upgrade_package { "perl":
 Resources
 =========
 
-Concatenated_file[apt_config]
+Concat[apt_config]
 -----------------------------
 
 Use this resource to depend on or add to a completed apt configuration
index b5be91fc6ed5989fcfdc896aaa7d127f461ceb1f..3a816d2fe0bed4c108204e06d2cf43de628741ae 100644 (file)
@@ -167,7 +167,7 @@ class apt {
     }
     if $custom_preferences != false {
       Exec["custom_keys"] {
-        before => Concatenated_file[apt_config],
+        before => Concat[apt_config],
       }
     }
   }
index 3baffad36ed9a48e77e26f72e840d6b4200440ec..2904f36ec15f2cb36c923f4242885d117584b457 100644 (file)
@@ -14,7 +14,7 @@ class apt::unattended_upgrades {
 
   if $custom_preferences != false {
     Apt_conf["50unattended-upgrades"] {
-      before => Concatenated_file[apt_config],
+      before => Concat[apt_config],
     }
   }
 }