diff options
author | John Keiser <john@johnkeiser.com> | 2015-05-07 18:09:37 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2015-06-02 09:53:40 -0700 |
commit | 7f0ab6b097f9de46bdbb0b2e4460c2bfc9743974 (patch) | |
tree | ea02abd8eda5d976d2ceeeab0d7759d261dd1fd4 /lib/chef/provider_resolver.rb | |
parent | c298a6f52a11fcbe022a75b259cf40ca9168394c (diff) | |
download | chef-7f0ab6b097f9de46bdbb0b2e4460c2bfc9743974.tar.gz |
Bring back platform mapping resolution call, fix automatic ubuntu provider tests
Diffstat (limited to 'lib/chef/provider_resolver.rb')
-rw-r--r-- | lib/chef/provider_resolver.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/provider_resolver.rb b/lib/chef/provider_resolver.rb index 4b194c5713..3c644dd489 100644 --- a/lib/chef/provider_resolver.rb +++ b/lib/chef/provider_resolver.rb @@ -58,7 +58,8 @@ class Chef def resolve maybe_explicit_provider(resource) || - maybe_dynamic_provider_resolution(resource, action) + maybe_dynamic_provider_resolution(resource, action) || + maybe_chef_platform_lookup(resource) end def provided_by?(provider_class) |