diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2021-11-04 14:58:35 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2021-11-04 14:58:35 -0700 |
commit | 1beb4a809d8be7386027bff6dfcf031585d61bb3 (patch) | |
tree | a54128d96aaa074cb7101ea644acbc2c301002ce /lib/chef/resource/execute.rb | |
parent | 3e3aeef2cdd4f7c47416df3f51d06398adb6ea7b (diff) | |
download | chef-lcg/umask-attribute.tar.gz |
Add string to umask attributelcg/umask-attribute
fixes #11932
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/resource/execute.rb')
-rw-r--r-- | lib/chef/resource/execute.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chef/resource/execute.rb b/lib/chef/resource/execute.rb index 602453c7eb..5c84eb3835 100644 --- a/lib/chef/resource/execute.rb +++ b/lib/chef/resource/execute.rb @@ -517,9 +517,6 @@ class Chef name_property: true, description: "An optional property to set the command to be executed if it differs from the resource block's name. Note: Use the **execute** resource to run a single command. Use multiple **execute** resource blocks to run multiple commands." - property :umask, [ String, Integer ], - description: "The file mode creation mask, or umask." - property :creates, String, description: "Prevent a command from creating a file when that file already exists." |