summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaustubh-d <kausubh@clogeny.com>2013-07-22 01:29:01 -0700
committeradamedx <adamed@opscode.com>2013-08-04 08:27:07 -0700
commiteeb95c154b8271a7db9f1c4d986466b87699a0e5 (patch)
tree20ddbb2bfe10fbea2926c28047474f580842f8bc
parent22c645821fda39f1e2d1fe21e9b22917f5ff513c (diff)
downloadchef-eeb95c154b8271a7db9f1c4d986466b87699a0e5.tar.gz
add aix cron provider mapping.
-rw-r--r--lib/chef/platform/provider_mapping.rb3
-rw-r--r--lib/chef/providers.rb1
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/chef/platform/provider_mapping.rb b/lib/chef/platform/provider_mapping.rb
index c9706fb220..2911e32284 100644
--- a/lib/chef/platform/provider_mapping.rb
+++ b/lib/chef/platform/provider_mapping.rb
@@ -322,7 +322,8 @@ class Chef
:default => {
:group => Chef::Provider::Group::Aix,
:mount => Chef::Provider::Mount::Aix,
- :ifconfig => Chef::Provider::Ifconfig::Aix
+ :ifconfig => Chef::Provider::Ifconfig::Aix,
+ :cron => Chef::Provider::Cron::Aix
}
},
:default => {
diff --git a/lib/chef/providers.rb b/lib/chef/providers.rb
index 65d251f687..a87aa9d141 100644
--- a/lib/chef/providers.rb
+++ b/lib/chef/providers.rb
@@ -21,6 +21,7 @@ require 'chef/provider/breakpoint'
require 'chef/provider/cookbook_file'
require 'chef/provider/cron'
require 'chef/provider/cron/solaris'
+require 'chef/provider/cron/aix'
require 'chef/provider/deploy'
require 'chef/provider/directory'
require 'chef/provider/env'