summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-02-05 13:12:12 -0800
committerGitHub <noreply@github.com>2020-02-05 13:12:12 -0800
commit8690a172e1c14a517316f35779ed2e68c4c2ab3b (patch)
tree2003b675301c6f7b88616ab3d88cd135f71c3da4
parent64d033ce2ea5467b85cd658a9736f3bbc4d02bae (diff)
parent2fc50b07307e632770571bad598f8610b03cf02b (diff)
downloadchef-8690a172e1c14a517316f35779ed2e68c4c2ab3b.tar.gz
Merge pull request #9334 from chef/default_desc_15
Add a default_description in windows_task
-rw-r--r--lib/chef/resource/windows_task.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_task.rb b/lib/chef/resource/windows_task.rb
index 95de6b37c2..c29a951d74 100644
--- a/lib/chef/resource/windows_task.rb
+++ b/lib/chef/resource/windows_task.rb
@@ -77,7 +77,8 @@ class Chef
description: "The frequency with which to run the task."
property :start_day, String,
- description: "Specifies the first date on which the task runs in MM/DD/YYYY format."
+ description: "Specifies the first date on which the task runs in MM/DD/YYYY format.",
+ default_description: "The current date."
property :start_time, String,
description: "Specifies the start time to run the task, in HH:mm format."