Merge pull request #3355 from miurahr/fix_ssh_utf8
core: force SSH to be ASCII
This commit is contained in:
commit
188d3c394f
|
@ -449,7 +449,7 @@ module VagrantPlugins
|
|||
end
|
||||
|
||||
# Output the command
|
||||
ch2.send_data "#{command}\n"
|
||||
ch2.send_data "#{command}\n".force_encoding('ASCII-8BIT')
|
||||
|
||||
# Remember to exit or this channel will hang open
|
||||
ch2.send_data "exit\n"
|
||||
|
|
Loading…
Reference in New Issue