summaryrefslogtreecommitdiff
path: root/lib/chef/resource/cron.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/cron.rb')
-rw-r--r--lib/chef/resource/cron.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/chef/resource/cron.rb b/lib/chef/resource/cron.rb
index f6c009058c..32c47b963f 100644
--- a/lib/chef/resource/cron.rb
+++ b/lib/chef/resource/cron.rb
@@ -18,6 +18,7 @@
#
require "chef/resource"
+require "chef/provider/cron" # do not remove. we actually need this below
class Chef
class Resource
@@ -135,14 +136,7 @@ class Chef
)
end
- def time(arg = nil)
- set_or_return(
- :time,
- arg,
- :equal_to => Chef::Provider::Cron::SPECIAL_TIME_VALUES
- )
- end
-
+ property :time, Symbol, equal_to: Chef::Provider::Cron::SPECIAL_TIME_VALUES
property :mailto, String
property :path, String
property :home, String