]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
Correct some errors in the README
authorGabriel Filion <lelutin@gmail.com>
Mon, 25 Oct 2010 18:36:19 +0000 (14:36 -0400)
committerGabriel Filion <lelutin@gmail.com>
Mon, 25 Oct 2010 18:36:19 +0000 (14:36 -0400)
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
README

diff --git a/README b/README
index 2a2aa6fc9eb3f40e27272a96e375a171bf7c9565..355ee72ad4b8a7a7600c9e61a2c2fddd909c4cdd 100644 (file)
--- a/README
+++ b/README
@@ -151,9 +151,9 @@ apt::apt_conf
 -------------
 
 Creates a file in the apt/apt.conf.d directory to easily add configuration
-components. One can use either 'sources' to specify a list of static files to
-include from the puppet fileserver or 'content' to define content inline or
-with the help of a template.
+components. One can use either the 'source' meta-parameter to specify a list of
+static files to include from the puppet fileserver or the 'content'
+meta-parameter to define content inline or with the help of a template.
 
 Example:
 
@@ -195,16 +195,16 @@ example for preseeding installation of the 'mysql' package with a template:
 apt::sources_list
 -------------
 
-Creates a file in the apt/apt.conf.d directory to easily add additional apt
-sources. One can use either 'sources' to specify a list of static files to
-include from the puppet fileserver or 'content' to define content inline or
-with the help of a template.
+Creates a file in the apt/sources.list.d directory to easily add additional apt
+sources. One can use either the 'source' meta-parameter to specify a list of
+static files to include from the puppet fileserver or the 'content'
+meta-parameter to define content inline or with the help of a template.
 
 Example:
 
   apt::sources_list { "company_internals.list":
-    content => ["puppet:///modules/site-apt/${fqdn}/company_internals.list",
-                "puppet:///modules/site-apt/company_internals.list"],
+    source => ["puppet:///modules/site-apt/${fqdn}/company_internals.list",
+               "puppet:///modules/site-apt/company_internals.list"],
   }
 
 apt::upgrade_package