diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-08-08 15:43:21 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-08-08 15:43:21 -0700 |
commit | 60ec22a3eff29b10fdb4c9192dd9f93ecfbd07cc (patch) | |
tree | bf0e236e29c8fa111f1e8d9bca2b5abb6a8f78cb | |
parent | bca8f02bdf21703e0bc57f6056a81179d1683e3a (diff) | |
download | chef-60ec22a3eff29b10fdb4c9192dd9f93ecfbd07cc.tar.gz |
Backport another description from the docs site
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | lib/chef/resource/cron_d.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/cron_d.rb b/lib/chef/resource/cron_d.rb index 3ebf415c50..c9bc8fcb1d 100644 --- a/lib/chef/resource/cron_d.rb +++ b/lib/chef/resource/cron_d.rb @@ -111,7 +111,7 @@ class Chef } property :hour, [Integer, String], - description: "The hour at which the cron entry should run (0 - 23).", + description: "The hour at which the cron entry is to run (0 - 23).", default: "*", callbacks: { "should be a valid hour spec" => ->(spec) { validate_numeric(spec, 0, 23) }, } |