Class: Chef::Resource::Machine

Inherits:
LWRPBase
  • Object
show all
Defined in:
lib/chef/resource/machine.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Machine

Returns a new instance of Machine.



8
9
10
11
12
13
14
# File 'lib/chef/resource/machine.rb', line 8

def initialize(*args)
  super
  @chef_environment = Cheffish.enclosing_environment
  @chef_server = Cheffish.enclosing_chef_server
  @provisioner = ChefMetal.enclosing_provisioner
  @provisioner_options = ChefMetal.enclosing_provisioner_options
end

Instance Method Details

#after_createdObject



16
17
18
19
# File 'lib/chef/resource/machine.rb', line 16

def after_created
  # Notify the provisioner of this machine's creation
  @provisioner.resource_created(self)
end

#file(remote_path, local = nil) ⇒ Object

A single file to upload, in the format REMOTE_PATH, LOCAL_PATH|HASH. This directive may be passed multiple times, and multiple files will be uploaded.

Examples

file ‘/remote/path.txt’, ‘/local/path.txt’ file ‘/remote/path.txt’, { :local_path => ‘/local/path.txt’ } file ‘/remote/path.txt’, { :content => ‘woo’ }



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/chef/resource/machine.rb', line 69

def file(remote_path, local = nil)
  @files ||= {}
  if remote_path.is_a?(Hash)
    if local
      raise "file(Hash, something) does not make sense.  Either pass a hash, or pass a pair, please."
    end
    remote_path.each_pair do |remote, local|
      @files[remote] = local
    end
  elsif remote_path.is_a?(String)
    if !local
      raise "Must pass both a remote path and a local path to file directive"
    end
    @files[remote_path] = local
  else
    raise "file remote_path must be a String, but is a #{remote_path.class}"
  end
end