Sha256: 2e93cb4551e12c1daff71e60e4b2725b3c2bba89f95275d8940665c0e17ad5d5
Contents?: true
Size: 1.27 KB
Versions: 114
Compression:
Stored size: 1.27 KB
Contents
# # Author:: Michael Leianrtas (<mleinartas@gmail.com>) # Copyright:: Copyright (c) 2010 Michael Leinartas # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'ohai' class Chef class Provider class Ohai < Chef::Provider def whyrun_supported? true end def load_current_resource true end def action_reload converge_by("re-run ohai and merge results into node attributes") do 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") end end end end end
Version data entries
114 entries across 114 versions & 2 rubygems