diff options
author | Tim Smith <tsmith@chef.io> | 2018-05-11 11:06:35 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-13 11:09:23 -0700 |
commit | 12a28933b46b83e6745a873d174a1fbe9e46f13d (patch) | |
tree | 20f48f3601337ee47aa12ad195a814d96b2c2ae2 /lib/chef/resources.rb | |
parent | 968f503119b8df8a23ab1c993024238a4759fdd6 (diff) | |
download | chef-12a28933b46b83e6745a873d174a1fbe9e46f13d.tar.gz |
Add cron_d and cron_access resources from the cron cookbook
Cron_d was the #1 requested resource that we already had written. Everyone uses it and we should ship it. It's not a replacement for the existing cron cookbook, but just a different way of managing cron. If people want to manage the whole file or individual snippets we'll give them the option, just as we've always done by having the core resource and this resource.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resources.rb')
-rw-r--r-- | lib/chef/resources.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/resources.rb b/lib/chef/resources.rb index c13a01c352..069c35691f 100644 --- a/lib/chef/resources.rb +++ b/lib/chef/resources.rb @@ -1,6 +1,6 @@ # # Author:: Daniel DeLeo (<dan@chef.io>) -# Copyright:: Copyright 2010-2016, Chef Software, Inc. +# Copyright:: Copyright 2010-2018, Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -31,6 +31,8 @@ require "chef/resource/chocolatey_config" require "chef/resource/chocolatey_package" require "chef/resource/chocolatey_source" require "chef/resource/cron" +require "chef/resource/cron_access" +require "chef/resource/cron_d" require "chef/resource/csh" require "chef/resource/directory" require "chef/resource/dmg_package" |