mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-19 06:50:07 +03:00
M #-: Fix stdin processing in SshStreamCommand (#1043)
This commit is contained in:
parent
0793bde8ed
commit
02736a1d85
@ -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