summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Gitlin <jgitlin@pinnacle21.com>2021-10-14 13:32:59 -0400
committerJosh Gitlin <jgitlin@pinnacle21.com>2021-10-14 13:32:59 -0400
commitad90bfd97508493b38e9d2422d499c4812016fff (patch)
tree6befd103e8fdf502e6c3669bd68546efa33a092f
parent8f3fdf8bc7079453798bdc5e35eb95adcebb6ee5 (diff)
downloadchef-ad90bfd97508493b38e9d2422d499c4812016fff.tar.gz
Clarify recursive delete
Signed-off-by: Josh Gitlin <jgitlin@pinnacle21.com>
-rw-r--r--lib/chef/resource/directory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/directory.rb b/lib/chef/resource/directory.rb
index d51fb144f7..d487b6013e 100644
--- a/lib/chef/resource/directory.rb
+++ b/lib/chef/resource/directory.rb
@@ -46,7 +46,7 @@ class Chef
description: "The path to the directory. Using a fully qualified path is recommended, but is not always required."
property :recursive, [ TrueClass, FalseClass ],
- description: "Create or delete parent directories recursively. For the owner, group, and mode properties, the value of this property applies only to the leaf directory.",
+ description: "Create parent directories recursively, or delete direcory and all children recursively. For the owner, group, and mode properties, the value of this property applies only to the leaf directory.",
default: false
end
end