Class: Chef::Provider::Ohai

Inherits:
Chef::Provider show all
Defined in:
lib/chef/provider/ohai.rb

Instance Attribute Summary

Attributes inherited from Chef::Provider

#current_resource, #new_resource, #run_context

Instance Method Summary collapse

Methods inherited from Chef::Provider

#action_nothing, build_from_file, #cookbook_name, #initialize, #node, #resource_collection

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename

Methods included from Mixin::RecipeDefinitionDSLCore

#method_missing

Methods included from Mixin::Language

#data_bag, #data_bag_item, #platform?, #search, #value_for_platform

Constructor Details

This class inherits a constructor from Chef::Provider

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Chef::Mixin::RecipeDefinitionDSLCore

Instance Method Details

#action_reloadObject



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/chef/provider/ohai.rb', line 29

def action_reload
  ohai = ::Ohai::System.new
  if @new_resource.plugin
    ohai.require_plugin @new_resource.plugin
  else
    ohai.all_plugins
  end
  node.automatic_attrs.merge! ohai.data
  Chef::Log.info("#{@new_resource} reloaded")
  @new_resource.updated_by_last_action(true)
end

#load_current_resourceObject



25
26
27
# File 'lib/chef/provider/ohai.rb', line 25

def load_current_resource
  true
end