Sha256: 4587b545a0f2964635629a0085bf3bb68459e16266b558ec800199a0f2e0d11c
Contents?: true
Size: 503 Bytes
Versions: 3
Compression:
Stored size: 503 Bytes
Contents
Vagrant.configure("2") do |config| config.environment.define config do |machine, options, env_settings| machine.vm.network :private_network, ip: options["ip"] machine.vm.provider :virtualbox do |vb, override| vb.customize ["modifyvm", :id, "--memory", "2048"] vb.customize ["modifyvm", :id, "--cpus", options["cpu"]] override.vm.box = "centos6.3_x86_64_500g" override.vm.box_url = "http://vbox.sciencescape.org/centos6.3_x86_64_500g.box" end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-environments-0.1.3 | Vagrantfile |
vagrant-environments-0.1.2 | Vagrantfile |
vagrant-environments-0.1.1 | Vagrantfile |