summaryrefslogtreecommitdiff
path: root/lib/chef/resource/windows_task.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/windows_task.rb')
-rw-r--r--lib/chef/resource/windows_task.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/chef/resource/windows_task.rb b/lib/chef/resource/windows_task.rb
index 9af20f8af0..ccecb3a7a0 100644
--- a/lib/chef/resource/windows_task.rb
+++ b/lib/chef/resource/windows_task.rb
@@ -36,7 +36,7 @@ class Chef
name_property: true
property :command, String,
- description: ""
+ description: "The command to be executed by the windows scheduled task."
property :cwd, String,
description: "The directory the task will be run from."
@@ -57,7 +57,8 @@ class Chef
default: false
property :interactive_enabled, [TrueClass, FalseClass],
- description: "", default: false
+ description: "Allow task to run interactively or non-interactively. Requires user and password to also be set.",
+ default: false
property :frequency_modifier, [Integer, String],
default: 1
@@ -90,7 +91,7 @@ class Chef
description: "For :on_idle frequency, the time (in minutes) without user activity that must pass to trigger the task, from 1 - 999."
property :random_delay, [String, Integer],
- description: ""
+ description: "Delays the task upto given time (in seconds)."
property :execution_time_limit, [String, Integer],
description: "The maximum time (in seconds) the task will run.",