diff options
author | Marc Chamberland <mchamberland@pbsc.com> | 2019-05-05 20:40:46 -0400 |
---|---|---|
committer | Marc Chamberland <mchamberland@pbsc.com> | 2019-05-23 12:31:28 -0400 |
commit | 925c4c7d757404c7c68001bb928044cad0f5c2a8 (patch) | |
tree | b2ce5aeb86a6e3abc6eebfb7fba3aa98125ebe92 /lib/chef/resource/file.rb | |
parent | c08d0b8789b9ad5ac8082bef370d5cc6ae5b610f (diff) | |
download | chef-925c4c7d757404c7c68001bb928044cad0f5c2a8.tar.gz |
more distro constants for "Chef"
Signed-off-by: Marc Chamberland <mchamberland@pbsc.com>
Diffstat (limited to 'lib/chef/resource/file.rb')
-rw-r--r-- | lib/chef/resource/file.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/file.rb b/lib/chef/resource/file.rb index 310cd91830..0bfd57ea7f 100644 --- a/lib/chef/resource/file.rb +++ b/lib/chef/resource/file.rb @@ -73,7 +73,7 @@ class Chef description: "How the #{Chef::Dist::CLIENT} handles certain situations when the target file turns out not to be a file. For example, when a target file is actually a symlink. Set to true for the #{Chef::Dist::CLIENT} delete the non-file target and replace it with the specified file. Set to false for the #{Chef::Dist::CLIENT} to raise an error." property :manage_symlink_source, [ TrueClass, FalseClass ], desired_state: false, - description: "Change the behavior of the file resource if it is pointed at a symlink. When this value is set to true, the Chef client will manage the symlink's permissions or will replace the symlink with a normal file if the resource has content. When this value is set to false, #{Chef::Dist::PRODUCT} will follow the symlink and will manage the permissions and content of symlink's target file. The default behavior is true but emits a warning that the default value will be changed to false in a future version; setting this explicitly to true or false suppresses this warning." + description: "Change the behavior of the file resource if it is pointed at a symlink. When this value is set to true, #{Chef::Dist::PRODUCT} will manage the symlink's permissions or will replace the symlink with a normal file if the resource has content. When this value is set to false, #{Chef::Dist::PRODUCT} will follow the symlink and will manage the permissions and content of symlink's target file. The default behavior is true but emits a warning that the default value will be changed to false in a future version; setting this explicitly to true or false suppresses this warning." property :verifications, Array, default: lazy { [] } |