Closed iguyking closed 6 years ago
@iguyking Same error here. Did you found a solution?
Not yet. I think there's an incompatibility with the vagrant updates. My workaround was to use 1.9.5.
My too. Thanks.
I was having a similar issue - but solved it. Old syntax from my vagrantfile:
config.trigger.after :up, :stdout => true, :force => true do
run "vagrant ssh -c 'vagrant_up'"
end
New working sytanx:
config.trigger.after :up, :stdout => true, :force => true do
system("vagrant ssh -c 'vagrant_up'")
end
Windows 10 Vagrant 1.9.7
Running a vagrant up gives error of "stdout is not a tty" with a vagrant trigger on up action.