Sha256: 2aae8c91cb25301021527f330eb369880d23316a61425beec96d07e8473f8872
Contents?: true
Size: 561 Bytes
Versions: 2
Compression:
Stored size: 561 Bytes
Contents
Vagrant.configure("2") do |config| config.environments.default_environment = "local" config.environment.define config do |machine, name, 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.7 | Vagrantfile |
vagrant-environments-0.1.6 | Vagrantfile |