Skip to content

Commit ed8ccc3

Browse files
committed
Merge pull request #11 from pmsipilot/correctif-vagrantfile
fix(bug): Correctif vagrantfile
2 parents df50db2 + 413c108 commit ed8ccc3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Vagrantfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# vi: set ft=ruby :
33

44
Vagrant.configure("2") do |config|
5-
config.vm.box_url = "https://atlas.hashicorp.com/ARTACK/boxes/debian-jessie"
6-
config.vm.box = "ARTACK/debian-jessie"
5+
config.vm.box_url = "https://atlas.hashicorp.com/debian/jessie64"
6+
config.vm.box = "debian/jessie64"
77

8-
config.vm.provider "virtualbox" do |vbox,override|
9-
vbox.customize ["modifyvm", :id, "--memory", 1024]
10-
vbox.customize ["modifyvm", :id, "--cpus", 1]
8+
config.vm.provider :virtualbox do |v, override|
9+
v.customize ["modifyvm", :id, "--memory", 1024]
10+
v.customize ["modifyvm", :id, "--cpus", 1]
1111
override.vm.synced_folder ".", "/opt/demoinstance", :id => "vagrant-root", owner: "root", group: "root", :mount_options => ["dmode=777", "fmode=777"]
1212
end
1313

@@ -20,4 +20,4 @@ Vagrant.configure("2") do |config|
2020
sh.path = "ressources/vagrant_setup.sh"
2121
end
2222
end
23-
end
23+
end

0 commit comments

Comments
 (0)