Class: ChefMetal::Transport::SSH
- Inherits:
-
ChefMetal::Transport
- Object
- ChefMetal::Transport
- ChefMetal::Transport::SSH
- Defined in:
- lib/chef_metal/transport/ssh.rb
Defined Under Namespace
Classes: SSHResult
Constant Summary
Constants inherited from ChefMetal::Transport
Instance Attribute Summary collapse
-
#host ⇒ Object
readonly
Returns the value of attribute host.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#ssh_options ⇒ Object
readonly
Returns the value of attribute ssh_options.
-
#username ⇒ Object
readonly
Returns the value of attribute username.
Instance Method Summary collapse
- #available? ⇒ Boolean
- #disconnect ⇒ Object
- #download_file(path, local_path) ⇒ Object
- #execute(command, execute_options = {}) ⇒ Object
-
#initialize(host, username, ssh_options, options) ⇒ SSH
constructor
A new instance of SSH.
- #make_url_available_to_remote(local_url) ⇒ Object
- #read_file(path) ⇒ Object
- #upload_file(local_path, path) ⇒ Object
- #write_file(path, content) ⇒ Object
Constructor Details
#initialize(host, username, ssh_options, options) ⇒ SSH
Returns a new instance of SSH.
9 10 11 12 13 14 15 16 |
# File 'lib/chef_metal/transport/ssh.rb', line 9 def initialize(host, username, , ) require 'net/ssh' require 'net/scp' @host = host @username = username = = end |
Instance Attribute Details
#host ⇒ Object (readonly)
Returns the value of attribute host.
18 19 20 |
# File 'lib/chef_metal/transport/ssh.rb', line 18 def host @host end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
21 22 23 |
# File 'lib/chef_metal/transport/ssh.rb', line 21 def end |
#ssh_options ⇒ Object (readonly)
Returns the value of attribute ssh_options.
20 21 22 |
# File 'lib/chef_metal/transport/ssh.rb', line 20 def end |
#username ⇒ Object (readonly)
Returns the value of attribute username.
19 20 21 |
# File 'lib/chef_metal/transport/ssh.rb', line 19 def username @username end |
Instance Method Details
#available? ⇒ Boolean
125 126 127 128 129 130 131 |
# File 'lib/chef_metal/transport/ssh.rb', line 125 def available? execute('pwd') true rescue Errno::ETIMEDOUT, Errno::ECONNREFUSED, Errno::ECONNRESET, Net::SSH::AuthenticationFailed, Net::SSH::Disconnect, Net::SSH::HostKeyMismatch Chef::Log.debug("#{username}@#{host} unavailable: could not execute 'pwd' on #{host}: #{$!.inspect}") false end |
#disconnect ⇒ Object
114 115 116 117 118 119 120 121 122 123 |
# File 'lib/chef_metal/transport/ssh.rb', line 114 def disconnect if @session begin Chef::Log.debug("Closing SSH session on #{username}@#{host}") @session.close rescue end @session = nil end end |
#download_file(path, local_path) ⇒ Object
72 73 74 75 |
# File 'lib/chef_metal/transport/ssh.rb', line 72 def download_file(path, local_path) Chef::Log.debug("Downloading file #{path} from #{username}@#{host} to local #{local_path}") download(path, local_path) end |
#execute(command, execute_options = {}) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/chef_metal/transport/ssh.rb', line 23 def execute(command, = {}) Chef::Log.info("Executing #{options[:prefix]}#{command} on #{username}@#{host}") stdout = '' stderr = '' exitstatus = nil channel = session.open_channel do |channel| # Enable PTY unless otherwise specified, some instances require this unless [:ssh_pty_enable] == false channel.request_pty do |chan, success| raise "could not get pty" if !success && [:ssh_pty_enable] end end channel.exec("#{options[:prefix]}#{command}") do |ch, success| raise "could not execute command: #{command.inspect}" unless success channel.on_data do |ch2, data| stdout << data stream_chunk(, data, nil) end channel.on_extended_data do |ch2, type, data| stderr << data stream_chunk(, nil, data) end channel.on_request "exit-status" do |ch, data| exitstatus = data.read_long end end end with_execute_timeout() do channel.wait end Chef::Log.info("Completed #{command} on #{username}@#{host}: exit status #{exitstatus}") Chef::Log.debug("Stdout was:\n#{stdout}") if stdout != '' && ![:stream] && ![:stream_stdout] && Chef::Config.log_level != :debug Chef::Log.info("Stderr was:\n#{stderr}") if stderr != '' && ![:stream] && ![:stream_stderr] && Chef::Config.log_level != :debug SSHResult.new(command, , stdout, stderr, exitstatus) end |
#make_url_available_to_remote(local_url) ⇒ Object
103 104 105 106 107 108 109 110 111 112 |
# File 'lib/chef_metal/transport/ssh.rb', line 103 def make_url_available_to_remote(local_url) uri = URI(local_url) host = Socket.getaddrinfo(uri.host, uri.scheme, nil, :STREAM)[0][3] if host == '127.0.0.1' || host == '[::1]' # TODO IPv6 Chef::Log.debug("Forwarding local server 127.0.0.1:#{uri.port} to port #{uri.port} on #{username}@#{host}") session.forward.remote(uri.port, "127.0.0.1", uri.port) end local_url end |
#read_file(path) ⇒ Object
65 66 67 68 69 70 |
# File 'lib/chef_metal/transport/ssh.rb', line 65 def read_file(path) Chef::Log.debug("Reading file #{path} from #{username}@#{host}") result = StringIO.new download(path, result) result.string end |
#upload_file(local_path, path) ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/chef_metal/transport/ssh.rb', line 90 def upload_file(local_path, path) if [:prefix] # Make a tempfile on the other side, upload to that, and sudo mv / chown / etc. remote_tempfile = "/tmp/#{File.basename(path)}.#{Random.rand(2**32)}" Chef::Log.debug("Uploading #{local_path} to #{remote_tempfile} on #{username}@#{host}") Net::SCP.new(session).upload!(local_path, remote_tempfile) execute("mv #{remote_tempfile} #{path}") else Chef::Log.debug("Uploading #{local_path} to #{path} on #{username}@#{host}") Net::SCP.new(session).upload!(local_path, path) end end |
#write_file(path, content) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/chef_metal/transport/ssh.rb', line 77 def write_file(path, content) if [:prefix] # Make a tempfile on the other side, upload to that, and sudo mv / chown / etc. remote_tempfile = "/tmp/#{File.basename(path)}.#{Random.rand(2**32)}" Chef::Log.debug("Writing #{content.length} bytes to #{remote_tempfile} on #{username}@#{host}") Net::SCP.new(session).upload!(StringIO.new(content), remote_tempfile) execute("mv #{remote_tempfile} #{path}") else Chef::Log.debug("Writing #{content.length} bytes to #{path} on #{username}@#{host}") Net::SCP.new(session).upload!(StringIO.new(content), path) end end |