diff options
author | Tim Smith <tsmith@chef.io> | 2018-11-22 14:54:06 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-11-22 19:52:36 -0800 |
commit | fbd9fafa2436fab673078c957cd912eae4185763 (patch) | |
tree | 6174385f05d5b2a9f5a184bb8c9c1839c8039a5b | |
parent | cfad5b36e65d34145638d3f1b17c848eb90a0215 (diff) | |
download | chef-fbd9fafa2436fab673078c957cd912eae4185763.tar.gz |
minimal_ohai: Add init_package plugin as a required plugininit_package_plugin
This is a pretty critical bit of data and we're using it for decisions
in the timezone resource now.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | lib/chef/client.rb | 2 | ||||
-rw-r--r-- | spec/unit/client_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/client.rb b/lib/chef/client.rb index 770cdea32c..e668aeee00 100644 --- a/lib/chef/client.rb +++ b/lib/chef/client.rb @@ -604,7 +604,7 @@ class Chef # @api private # def run_ohai - filter = Chef::Config[:minimal_ohai] ? %w{fqdn machinename hostname platform platform_version ohai_time os os_version} : nil + filter = Chef::Config[:minimal_ohai] ? %w{fqdn machinename hostname platform platform_version ohai_time os os_version init_package} : nil ohai.all_plugins(filter) events.ohai_completed(node) rescue Ohai::Exceptions::CriticalPluginFailure => e diff --git a/spec/unit/client_spec.rb b/spec/unit/client_spec.rb index 4f9d66d776..acb5fb7997 100644 --- a/spec/unit/client_spec.rb +++ b/spec/unit/client_spec.rb @@ -38,7 +38,7 @@ describe Chef::Client do end it "runs ohai with only the minimum required plugins" do - expected_filter = %w{fqdn machinename hostname platform platform_version ohai_time os os_version} + expected_filter = %w{fqdn machinename hostname platform platform_version ohai_time os os_version init_package} expect(ohai_system).to receive(:all_plugins).with(expected_filter) client.run_ohai end |