Sha256: 6ad2375369a0b6262bec5c2dd4931a12185cbb53cb1aef0975ad5ca3ba6a2d52

Contents?: true

Size: 1001 Bytes

Versions: 6

Compression:

Stored size: 1001 Bytes

Contents

require 'chef/provider/lwrp_base'
require 'cheffish/cheffish_server_api'

class Chef::Provider::MachineFile < Chef::Provider::LWRPBase

  use_inline_resources

  def whyrun_supported?
    true
  end

  def machine
    @machine ||= begin
      if new_resource.machine.kind_of?(ChefMetal::Machine)
        new_resource.machine
      else
        # TODO this is inefficient, can we cache or something?
        node = Cheffish::CheffishServerAPI.new(new_resource.chef_server).get("/nodes/#{new_resource.machine}")
        new_resource.provisioner.connect_to_machine(node)
      end
    end
  end

  action :upload do
    if new_resource.content
      machine.write_file(self, new_resource.path, new_resource.content)
    else
      machine.upload_file(self, new_resource.local_path, new_resource.path)
    end
  end

  action :download do
    machine.download_file(provider, new_resource.path, new_resource.local_path)
  end

  action :delete do
    machine.delete_file(self, new_resource.path)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
chef-metal-0.4 lib/chef/provider/machine_file.rb
chef-metal-0.3.1 lib/chef/provider/machine_file.rb
chef-metal-0.3 lib/chef/provider/machine_file.rb
chef-metal-0.2.1 lib/chef/provider/machine_file.rb
chef-metal-0.2 lib/chef/provider/machine_file.rb
chef-metal-0.1 lib/chef/provider/machine_file.rb