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:
Nicolas Iooss 2019-12-22 18:12:02 +01:00
parent 17f06cf1fe
commit d82115ac48
No known key found for this signature in database
GPG Key ID: C191415F340DAAA0
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -128,8 +128,8 @@ Vagrant.configure("2") do |config|
end
# 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
config.vm.synced_folder ".", "/vagrant", type: "rsync",
debian.vm.synced_folder ".", "/vagrant", disabled: true
debian.vm.synced_folder ".", "/vagrant", type: "rsync",
rsync__exclude: ".vagrant/"
debian.vm.provision "shell", run: "once", inline: <<-SHELL