Вопрос

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?

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top