2011-08-11 12:53:52 -04:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Server < Fog::Model
|
|
|
|
|
|
|
|
def scp(local_path, remote_path, upload_options = {})
|
|
|
|
require 'net/scp'
|
|
|
|
requires :public_ip_address, :username
|
|
|
|
|
|
|
|
scp_options = {}
|
|
|
|
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
|
|
|
|
|
2011-12-09 08:14:53 -05:00
|
|
|
alias_method :scp_upload, :scp
|
|
|
|
|
|
|
|
def scp_download(remote_path, local_path, download_options = {})
|
|
|
|
require 'net/scp'
|
|
|
|
requires :public_ip_address, :username
|
|
|
|
|
|
|
|
scp_options = {}
|
|
|
|
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
|
|
|
|
|
2011-10-05 17:33:49 -04:00
|
|
|
def ssh(commands, options={})
|
2011-08-11 12:53:52 -04:00
|
|
|
require 'net/ssh'
|
|
|
|
requires :public_ip_address, :username
|
|
|
|
|
|
|
|
options[:key_data] = [private_key] if private_key
|
|
|
|
Fog::SSH.new(public_ip_address, username, options).run(commands)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|