Domanda

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?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top