Revision ea189b320cb4f42dd069d80f839364649057c1bd authored by Adam Retter on 31 January 2015, 14:41:06 UTC, committed by Adam Retter on 31 January 2015, 14:41:06 UTC
2 parent s d3a7367 + 391f85f
Raw File
Vagrantfile
Vagrant.configure("2") do |config|

  config.vm.provider "virtualbox" do |v|
    v.memory = 4096
    v.cpus = 2
  end

  config.vm.define "ubuntu14" do |box|
    box.vm.box = "ubuntu/trusty64"
  end

  config.vm.define "centos65" do |box|
    box.vm.box = "chef/centos-6.5"
  end

end
back to top