Skip to content
Snippets Groups Projects
Commit 6c7d2538 authored by Pierre Ozoux's avatar Pierre Ozoux
Browse files

Fixes mistake

parent 807e05b5
No related branches found
No related tags found
No related merge requests found
...@@ -42,8 +42,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| ...@@ -42,8 +42,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
core.vm.hostname = HOSTNAME core.vm.hostname = HOSTNAME
core.hostsupdater.aliases = ["example.dev"] core.hostsupdater.aliases = ["example.dev"]
core.vm.network :private_network, ip: "#{BASE_IP_ADDR}.#{i+1}" core.vm.network :private_network, ip: "#{BASE_IP_ADDR}.#{i+1}"
core.vm.synced_folder ".", "/data/infrastructure"
core.vm.synced_folder "/data/per-user", "/data/per-user"
core.vm.synced_folder ".", "/data/infrastructure", id: "coreos-infrastructure", :nfs => true, :mount_options => ['nolock,vers=3,udp'] core.vm.synced_folder ".", "/data/infrastructure", id: "coreos-infrastructure", :nfs => true, :mount_options => ['nolock,vers=3,udp']
core.vm.synced_folder "/data/per-user", "/data/per-user", id: "coreos-per-user", :nfs => true, :mount_options => ['nolock,vers=3,udp'] core.vm.synced_folder "/data/per-user", "/data/per-user", id: "coreos-per-user", :nfs => true, :mount_options => ['nolock,vers=3,udp']
core.vm.provision :file, source: "./config/user-data", destination: "/tmp/vagrantfile-user-data" core.vm.provision :file, source: "./config/user-data", destination: "/tmp/vagrantfile-user-data"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment