Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't start vagrant after Laravel Homestead installation (vagrant up)

Tags:

php

laravel

I followed all the steps in the laravel homestead installation, but after issuing 'vagrant up' command I get this messages:

C:/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/psych.rb:205:in `parse': (<unknown>
): found a tab character that violate intendation while scanning a plain scalar
at line 17 column 11 (Psych::SyntaxError)
        from C:/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/psych.rb:205:in `parse
_stream'
        from C:/HashiCorp/Vagrant/embedded/lib/ruby/2.0.0/psych.rb:153:in `parse
'

What can be the problem?

like image 906
Salvador Maine Avatar asked Jun 12 '14 16:06

Salvador Maine


1 Answers

Ok, I got it... Vagrant is not fond of tabs in the Homestead.yaml file... The indentation must be with spaces and exact.

Just substituted the tabs with spaces and vagrant is able to start.

like image 69
Salvador Maine Avatar answered Oct 15 '22 07:10

Salvador Maine