Vagrantfile: fix configuration
"debian" needs to be used instead of "config" in the VM description. Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>
This commit is contained in:
parent
17f06cf1fe
commit
d82115ac48
|
@ -128,8 +128,8 @@ Vagrant.configure("2") do |config|
|
||||||
end
|
end
|
||||||
|
|
||||||
# redefine the /vagrant as a synced folder (not an NFS share), in order to work cleanly on it
|
# redefine the /vagrant as a synced folder (not an NFS share), in order to work cleanly on it
|
||||||
config.vm.synced_folder ".", "/vagrant", disabled: true
|
debian.vm.synced_folder ".", "/vagrant", disabled: true
|
||||||
config.vm.synced_folder ".", "/vagrant", type: "rsync",
|
debian.vm.synced_folder ".", "/vagrant", type: "rsync",
|
||||||
rsync__exclude: ".vagrant/"
|
rsync__exclude: ".vagrant/"
|
||||||
|
|
||||||
debian.vm.provision "shell", run: "once", inline: <<-SHELL
|
debian.vm.provision "shell", run: "once", inline: <<-SHELL
|
||||||
|
|
Loading…
Reference in New Issue