From: lyrics Date: 2009-01-15T02:04:06+09:00 Subject: Net::SSH serialized commands Hi, I am using Net::SSH v2 I want to execute a command when the first one is complete. But I can't make it working. Here is my code: Net::SSH.start( addr, user, :password => passwd) do |session| session.exec! ("service X restart") session.exec!("") end The issue is that the second "session.exec!" is executed before service is restarted. I guess I am not doing the right way but I don't know how to do it. Can someone help me,please? lyrics