Sha256: 671bc5143c67556f480e0f0ffd6fbe850612dd87d79eead98795c387506f8756
Contents?: true
Size: 577 Bytes
Versions: 6
Compression:
Stored size: 577 Bytes
Contents
Vagrant.configure("2") do |config| config.vm.box = "ffuenf/ubuntu-14.04-server-amd64" # VirtualBox config.vm.provider :virtualbox do |vb| vb.customize ["modifyvm", :id, "--memory", "2048"] vb.customize ["modifyvm", :id, "--cpus", "1"] end # VMWare Fusion config.vm.provider :vmware_fusion do |vb| vb.vmx["memsize"] = "4096" vb.vmx["numvcpus"] = "1" end config.vm.network :private_network, ip: "10.3.3.3" config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", type: "nfs" config.vm.provision :shell, :path => "./provisioning.sh" end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
redsnow-0.3.2 | Vagrantfile |
redsnow-0.3.1 | Vagrantfile |
redsnow-0.3.0 | Vagrantfile |
redsnow-0.2.1 | Vagrantfile |
redsnow-0.2.0 | Vagrantfile |
redsnow-0.1.6 | Vagrantfile |