summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorBen Hughes <ben@puppetlabs.com>2011-04-01 12:48:38 +1100
committerJames Turnbull <james@lovedthanlost.net>2011-04-01 17:37:45 +1100
commitee1df783ddd4b72bd959735443b5dbdfea69e323 (patch)
tree7159c47f9ace706def98bde820bbf2a014caba1c /lib/puppet
parent9c06fbd762cddcc41a7185a36f2a8e72879125eb (diff)
downloadpuppet-ee1df783ddd4b72bd959735443b5dbdfea69e323.tar.gz
puppet-ee1df783ddd4b72bd959735443b5dbdfea69e323.tar.xz
puppet-ee1df783ddd4b72bd959735443b5dbdfea69e323.zip
(#6937) Document the recurse parameter of File type.
Update the desc block with information gleaned from #1469 and the code about recurse => remote and other types of recursion. The auto generated documentation was sparse and this is an area that often comes up on the mailing list/IRC.
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/type/file.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/puppet/type/file.rb b/lib/puppet/type/file.rb
index 1a6d0c3ac..a73ada57e 100644
--- a/lib/puppet/type/file.rb
+++ b/lib/puppet/type/file.rb
@@ -122,7 +122,17 @@ Puppet::Type.newtype(:file) do
newparam(:recurse) do
desc "Whether and how deeply to do recursive
- management."
+ management. Options are:
+ inf,true => Regular style recursion on both remote and local
+ directory structure.
+ remote => Descends recursively into the remote directory
+ but not the local directory. Allows copying of
+ a few files into a directory containing many
+ unmanaged files without scanning all the local files.
+ false => Default of no-recursion.
+ [0-9]+ => Both, but limit recursion. Warning: this syntax
+ is deprecated and has moved to recurselimit.
+ "
newvalues(:true, :false, :inf, :remote, /^[0-9]+$/)