Revision e379fcf26060550b54c6372c1ee94c9a15f3f396 authored by François Dupressoir on 27 January 2016, 09:41:04 UTC, committed by François Dupressoir on 27 January 2016, 09:41:04 UTC
and updating stdlib.
1 parent 729da1a
Raw File
Vagrantfile
Vagrant.configure(2) do |config|

  project_name = File.dirname(__FILE__).split("/").last

  config.vm.provider "virtualbox" do |vb|
    vb.memory = 6144 # set VM memory to 6GB
  end

  config.vm.synced_folder ".", "/home/vagrant/#{project_name}"

  config.vm.define :ubuntu do |ubuntu_config|
    ubuntu_config.vm.box = "ubuntu/wily64"
  end

  config.vm.provision "shell", binary: true, privileged: false do |s|
    s.path = "scripts/vagrant/post-installation.sh"
    s.args = ["#{project_name}"]
  end
end
back to top