summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-05-26 12:43:48 -0700
committerPete Higgins <pete@peterhiggins.org>2020-05-26 12:43:48 -0700
commite8b970318998f46ad964947fade8d3980ef92641 (patch)
treee910ee0a0938ec892cffd009af679bd7bec04bd8
parent6ec102cae769e517a2ec304458c3ec5d591b4fb3 (diff)
downloadchef-e8b970318998f46ad964947fade8d3980ef92641.tar.gz
Fix property definition according to PR feedback.
-rw-r--r--lib/chef/resource/execute.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/execute.rb b/lib/chef/resource/execute.rb
index 38329a0bb5..643248bf70 100644
--- a/lib/chef/resource/execute.rb
+++ b/lib/chef/resource/execute.rb
@@ -103,8 +103,8 @@ class Chef
description: "Determines whether the script will run with elevated permissions to circumvent User Access Control (UAC) interactively blocking the process.\nThis will cause the process to be run under a batch login instead of an interactive login. The user running #{Chef::Dist::CLIENT} needs the 'Replace a process level token' and 'Adjust Memory Quotas for a process' permissions. The user that is running the command needs the 'Log on as a batch job' permission.\nBecause this requires a login, the user and password properties are required.",
introduced: "13.3"
- property :input, [String, nil],
- introduced: "16.1",
+ property :input, [String],
+ introduced: "16.2",
description: "An optional property to set the input sent to the command as STDIN."
alias :env :environment