Sha256: caabd517c7724505beae99edb15d967878e2de65eca162ff5b4db4b785a446e8

Contents?: true

Size: 1.44 KB

Versions: 1

Compression:

Stored size: 1.44 KB

Contents

require 'chef/provider/lwrp_base'
require 'chef/provisioning/chef_provider_action_handler'
require 'chef/provisioning/machine'

class Chef
class Provider
class MachineFile < Chef::Provider::LWRPBase
  provides :machine_file

  def action_handler
    @action_handler ||= Chef::Provisioning::ChefProviderActionHandler.new(self)
  end

  use_inline_resources

  def whyrun_supported?
    true
  end

  def machine
    @machine ||= begin
      if new_resource.machine.kind_of?(Chef::Provisioning::Machine)
        new_resource.machine
      else
        run_context.chef_provisioning.connect_to_machine(new_resource.machine, new_resource.chef_server)
      end
    end
  end

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

    attributes = {}
    attributes[:group] = new_resource.group if new_resource.group
    attributes[:owner] = new_resource.owner if new_resource.owner
    attributes[:mode] = new_resource.mode if new_resource.mode

    machine.set_attributes(action_handler, new_resource.path, attributes)
  end

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

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

end
end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
chef-provisioning-2.0.1 lib/chef/provider/machine_file.rb