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

Version Path
chef-0.9.18 lib/chef/provider/ohai.rb
naked-chef-0.9.15.3 lib/chef/provider/ohai.rb
chef-0.9.16 lib/chef/provider/ohai.rb
chef-0.10.0.beta.6 lib/chef/provider/ohai.rb
chef-0.10.0.beta.5 lib/chef/provider/ohai.rb
chef-0.10.0.beta.4 lib/chef/provider/ohai.rb
TrueCar-chef-0.10.0.beta.3 lib/chef/provider/ohai.rb
chef-0.10.0.beta.3 lib/chef/provider/ohai.rb
chef-0.10.0.beta.2 lib/chef/provider/ohai.rb
chef-0.10.0.beta.1 lib/chef/provider/ohai.rb
chef-0.10.0.beta.0 lib/chef/provider/ohai.rb
naked-chef-0.9.15.2 lib/chef/provider/ohai.rb
naked-chef-0.9.15.1 lib/chef/provider/ohai.rb
chef-0.9.14 lib/chef/provider/ohai.rb
chef-0.9.14.rc.1 lib/chef/provider/ohai.rb
mbailey-chef-0.9.12.2 lib/chef/provider/ohai.rb
chef-0.9.14.beta.1 lib/chef/provider/ohai.rb
mbailey-chef-0.9.12.1 lib/chef/provider/ohai.rb
chef-0.9.12 lib/chef/provider/ohai.rb
chef-0.9.10 lib/chef/provider/ohai.rb