]> 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)
committerintrigeri <intrigeri@boum.org>
Wed, 11 Apr 2012 09:35:31 +0000 (11:35 +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 4d65e77c82bb2ca40a02eb35eb2ba9820f4be0fd..960f18d4a6f2c5e2dd563d64fb3510155e7e2dbb 100644 (file)
@@ -154,7 +154,7 @@ class apt {
     }
     if $custom_preferences != false {
       Exec["custom_keys"] {
-        before => Concatenated_file[apt_config],
+        before => Concat[apt_config],
       }
     }
   }
index b90fcbbdee9622bc1a23356ad675864bbe16952e..f31a3fbed926e8b570b8753ae32e8f8b51afdbfa 100644 (file)
@@ -15,7 +15,7 @@ class apt::unattended_upgrades {
 
   if $custom_preferences != false {
     Apt_conf["50unattended-upgrades"] {
-      before => Concatenated_file[apt_config],
+      before => Concat[apt_config],
     }
   }
 }