Sha256: ef9c6bb872b332efd03becf9ba7c083e493c062f7297a03e7d293b1d5dfab05e
Contents?: true
Size: 555 Bytes
Versions: 2
Compression:
Stored size: 555 Bytes
Contents
Vagrant.configure("2") do |config| config.environments.default_environment = "local" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-environments-0.1.5 | Vagrantfile |
vagrant-environments-0.1.4 | Vagrantfile |