tags:

views:

74

answers:

0

Hi all,

I am looking to execute a password change over Net-ssh and this code seems to hang:

Net::SSH.start(server_ip, "user", :verbose => :debug ) do |session|

  session.process.popen3("ls") do |input, output, error|

    ["old_pass","test", "test"].each do |x|

        input.puts x

    end

  end

end

I know the connection works because using a simple exec I can get the output from ls on the remote server, but this hangs.

Any ideas?

The last message from debug is that the public key succeeded.