Class: Fog::Compute::Server
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::Server
show all
- Defined in:
- lib/fog/compute/models/server.rb
Direct Known Subclasses
AWS::Server, AWS::SpotRequest, Bluebox::Server, Brightbox::Server, Clodo::Server, Cloudstack::Server, Glesys::Server, GoGrid::Server, HP::Server, IBM::Server, Joyent::Server, Libvirt::Server, Linode::Server, Ninefold::Server, OpenStack::Server, Ovirt::Server, Rackspace::Server, RackspaceV2::Server, Fog::Compute::StormOnDemand::Server, Vmfusion::Server, Voxel::Server, Vsphere::Server, XenServer::Server
Instance Attribute Summary collapse
Attributes inherited from Model
#collection, #service
Instance Method Summary
collapse
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
#connection, #connection=, #prepare_service_value
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Attribute Details
#private_key ⇒ Object
18
19
20
|
# File 'lib/fog/compute/models/server.rb', line 18
def private_key
@private_key ||= private_key_path && File.read(private_key_path)
end
|
#private_key_path ⇒ Object
13
14
15
16
|
# File 'lib/fog/compute/models/server.rb', line 13
def private_key_path
@private_key_path ||= Fog.credentials[:private_key_path]
@private_key_path &&= File.expand_path(@private_key_path)
end
|
#public_key ⇒ Object
27
28
29
|
# File 'lib/fog/compute/models/server.rb', line 27
def public_key
@public_key ||= public_key_path && File.read(public_key_path)
end
|
#public_key_path ⇒ Object
22
23
24
25
|
# File 'lib/fog/compute/models/server.rb', line 22
def public_key_path
@public_key_path ||= Fog.credentials[:public_key_path]
@public_key_path &&= File.expand_path(@public_key_path)
end
|
#ssh_port ⇒ Object
31
32
33
|
# File 'lib/fog/compute/models/server.rb', line 31
def ssh_port
@ssh_port ||= 22
end
|
#username ⇒ Object
9
10
11
|
# File 'lib/fog/compute/models/server.rb', line 9
def username
@username ||= 'root'
end
|
Instance Method Details
#scp(local_path, remote_path, upload_options = {}) ⇒ Object
Also known as:
scp_upload
35
36
37
38
39
40
41
42
|
# File 'lib/fog/compute/models/server.rb', line 35
def scp(local_path, remote_path, upload_options = {})
require 'net/scp'
requires :public_ip_address, :username
scp_options = {:port => ssh_port}
scp_options[:key_data] = [private_key] if private_key
Fog::SCP.new(public_ip_address, username, scp_options).upload(local_path, remote_path, upload_options)
end
|
#scp_download(remote_path, local_path, download_options = {}) ⇒ Object
46
47
48
49
50
51
52
53
|
# File 'lib/fog/compute/models/server.rb', line 46
def scp_download(remote_path, local_path, download_options = {})
require 'net/scp'
requires :public_ip_address, :username
scp_options = {:port => ssh_port}
scp_options[:key_data] = [private_key] if private_key
Fog::SCP.new(public_ip_address, username, scp_options).download(remote_path, local_path, download_options)
end
|
#ssh(commands, options = {}, &blk) ⇒ Object
55
56
57
58
59
60
61
62
|
# File 'lib/fog/compute/models/server.rb', line 55
def ssh(commands, options={}, &blk)
require 'net/ssh'
requires :public_ip_address, :username
options[:key_data] = [private_key] if private_key
options[:port] ||= ssh_port
Fog::SSH.new(public_ip_address, username, options).run(commands, &blk)
end
|
#sshable?(options = {}) ⇒ Boolean
64
65
66
67
68
|
# File 'lib/fog/compute/models/server.rb', line 64
def sshable?(options={})
ready? && !public_ip_address.nil? && !!Timeout::timeout(8) { ssh('pwd', options) }
rescue SystemCallError, Net::SSH::AuthenticationFailed, Timeout::Error
false
end
|