mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-22 18:50:08 +03:00
M #-: Fix stdin processing in SshStreamCommand (#1043)
(cherry picked from commit 02736a1d85f1e20067100fc35dfac1084511065d)
This commit is contained in:
parent
1d96657701
commit
ec21920834
@ -221,7 +221,11 @@ class SshStreamCommand < RemotesCommand
|
||||
end
|
||||
|
||||
@stream.exec(command)
|
||||
@stream.stdin.write(stdin) if stdin
|
||||
|
||||
if stdin
|
||||
@stream.stdin.write(stdin)
|
||||
@stream.stdin.close
|
||||
end
|
||||
|
||||
@code = @stream.wait_for_command(@timeout)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user