diff options
author | Gabriel Filion <lelutin@gmail.com> | 2010-10-25 14:36:19 -0400 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2010-10-25 14:36:19 -0400 |
commit | b5c504e19ef3f798d752bc43aa121496bff8d9aa (patch) | |
tree | 99143f0753ed848eebd5ab18c10bcdfca0c9ec27 | |
parent | bd3b46ac07e36bb995c99ade2e6d045c9f06f4fc (diff) | |
download | puppet-apt-b5c504e19ef3f798d752bc43aa121496bff8d9aa.tar.gz puppet-apt-b5c504e19ef3f798d752bc43aa121496bff8d9aa.tar.bz2 |
Correct some errors in the README
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
-rw-r--r-- | README | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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 |