Sha256: 455f61ea248211b784e0e0f5a95d2ca5a4d55c61b8d5820e15a965ea7e335ba5
Contents?: true
Size: 1.07 KB
Versions: 24
Compression:
Stored size: 1.07 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 load_current_resource true end 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 end end end end
Version data entries
24 entries across 24 versions & 4 rubygems