diff options
author | Tim Smith <tsmith@chef.io> | 2018-11-15 13:10:04 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-11-15 13:10:04 -0800 |
commit | b5da9b99fc53641cef96fbe0b8cce304efacc9db (patch) | |
tree | 51dd7ac7532df29ceb91dca0627b03f1017d04df /lib/chef/resource/execute.rb | |
parent | 5991cd84731a5c22e4ad411c38334b506d07ab9a (diff) | |
download | chef-attribute_is_property.tar.gz |
Replace several uses of attribute with property in resourcesattribute_is_property
We were still calling things attributes when they're actually properties. This fixes some documentation and error messages.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/execute.rb')
-rw-r--r-- | lib/chef/resource/execute.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/execute.rb b/lib/chef/resource/execute.rb index 05a76ab5e3..9eb86a2fef 100644 --- a/lib/chef/resource/execute.rb +++ b/lib/chef/resource/execute.rb @@ -87,7 +87,7 @@ class Chef description: "The amount of time (in seconds) a command is to wait before timing out." property :user, [ String, Integer ], - description: "The user name of the user identity with which to launch the new process. The user name may optionally be specifed with a domain, i.e. domainuser or user@my.dns.domain.com via Universal Principal Name (UPN)format. It can also be specified without a domain simply as user if the domain is instead specified using the domain attribute. On Windows only, if this property is specified, the password property must be specified." + description: "The user name of the user identity with which to launch the new process. The user name may optionally be specifed with a domain, i.e. domainuser or user@my.dns.domain.com via Universal Principal Name (UPN)format. It can also be specified without a domain simply as user if the domain is instead specified using the domain property. On Windows only, if this property is specified, the password property must be specified." property :domain, String, introduced: "12.21", |