Skip to content

Commit

Permalink
Merge pull request #11 from pmsipilot/correctif-vagrantfile
Browse files Browse the repository at this point in the history
fix(bug): Correctif vagrantfile
  • Loading branch information
wixyvir committed Sep 1, 2015
2 parents df50db2 + 413c108 commit ed8ccc3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# vi: set ft=ruby :

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

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

Expand All @@ -20,4 +20,4 @@ Vagrant.configure("2") do |config|
sh.path = "ressources/vagrant_setup.sh"
end
end
end
end

0 comments on commit ed8ccc3

Please sign in to comment.