diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-31 13:57:07 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2017-03-31 13:57:07 -0700 |
commit | 9c0a6a3775314872c8d3b9c914ba56bbda6c8e1b (patch) | |
tree | e2c26673b936dde27eb5fe3890111315a3ebc3b2 /lib/chef/provider/cron.rb | |
parent | 5dacd74ce5cccc4dbb651a45f9e591dd1921cc6e (diff) | |
download | chef-9c0a6a3775314872c8d3b9c914ba56bbda6c8e1b.tar.gz |
Chef-13: remove deprecated run_command API entirely
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/provider/cron.rb')
-rw-r--r-- | lib/chef/provider/cron.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/chef/provider/cron.rb b/lib/chef/provider/cron.rb index a45e889bcc..790849673d 100644 --- a/lib/chef/provider/cron.rb +++ b/lib/chef/provider/cron.rb @@ -17,13 +17,11 @@ # require "chef/log" -require "chef/mixin/command" require "chef/provider" class Chef class Provider class Cron < Chef::Provider - include Chef::Mixin::Command provides :cron, os: ["!aix", "!solaris2"] |