Question

Following the syntax from http://net-ssh.github.io/net-ssh/

Net::SSH.start('remotehost', 'ava') do |ssh|
  puts `hostname`
end

It prints the name of current hostname rather than remote hostname. What is wrong?

Was it helpful?

Solution

You should use as below :

Net::SSH.start('remotehost', 'ava') do |ssh|
  puts ssh.host
end

As ssh is an instance of Net::SSH::Connection::Session class And if you browse the documentation,you will get the method #host,which will give you the desired result.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top