You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try and provision a VM on AWS using vagrant-aws I get the error below after using the following tag in Vagrantfile (which resolves the tty issue) :
config.ssh.pty = true
/Applications/Vagrant/embedded/gems/gems/vagrant-1.6.4/plugins/communicators/ssh/communicator.rb:573:in `shell_execute': undefined local variable or method `stdout' for #<VagrantPlugins::CommunicatorSSH::Communicator:0x0000010131c110> (NameError)
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.4/plugins/communicators/ssh/communicator.rb:188:in `block in execute'
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.4/plugins/communicators/ssh/communicator.rb:280:in `connect'
from /Applications/Vagrant/embedded/gems/gems/vagrant-1.6.4/plugins/communicators/ssh/communicator.rb:182:in `execute'
from /Users/nphilipp/.vagrant.d/gems/gems/vagrant-aws-0.5.0/lib/vagrant-aws/action/sync_folders.rb:32:in `call'
There was a recent diff 138aa5a that replaced line 428 :
- use_tty = false
- stdout = ''
+ # These variables are used to scrub PTY output if we're in a PTY
+ pty = false
+ pty_stdout = ""
And I believe that line 573 of the current version wasn't updated to use pty_stdout.
The text was updated successfully, but these errors were encountered:
npvisual
pushed a commit
to npvisual/vagrant
that referenced
this issue
Sep 4, 2014
Environment :
When I try and provision a VM on AWS using vagrant-aws I get the error below after using the following tag in Vagrantfile (which resolves the tty issue) :
There was a recent diff 138aa5a that replaced line 428 :
And I believe that line 573 of the current version wasn't updated to use pty_stdout.
The text was updated successfully, but these errors were encountered: