summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-02-05 09:10:22 -0800
committerGitHub <noreply@github.com>2020-02-05 09:10:22 -0800
commit71e3e52a207b673f3a9e0b6d6e523f591ed1bc20 (patch)
tree0cf220b46e3d59265cd6b012ccf0e75ee08ae020
parent6cd4c5734034aa38dc5c497e0ffbab53b5759d4e (diff)
parent48c07db791a561ba44de08461577bf5195de27bf (diff)
downloadchef-71e3e52a207b673f3a9e0b6d6e523f591ed1bc20.tar.gz
Merge pull request #9329 from chef/task_description
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."