Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v|
v.memory = 1024
end
config.vm.define "wordpress" do |m|
m.vm.network "private_network", ip: "172.12.177.40"
end
end
o erro que está apresentando é
There was an error loading a Vagrantfile. The file being loaded
and the error message are shown below. This is usually caused by
a syntax error.
Path: /home/furtado/wordpress_com_ansible/Vagrantfile
Line number: 207
Message: LoadError: cannot load such file -- /home/furtado/wordpress_com_ansible/Vagrantfile
Não consegui diagnosticar o motivo do erro. Espero que possam me ajudar.