/chef/lib/chef/provider/ohai.rb
http://github.com/opscode/chef · Ruby · 42 lines · 21 code · 4 blank · 17 comment · 1 complexity · 4629ea860aeca8879f7714d98accb23c MD5 · raw file
- #
- # 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
- Chef::Log.info("#{@new_resource} reloaded")
- @new_resource.updated_by_last_action(true)
- end
- end
- end
- end