Sha256: 4599f99f25b34b9a7a2132f263d8ae3c380ce95c07af1f01bffef8c7c4573aa9
Contents?: true
Size: 544 Bytes
Versions: 5
Compression:
Stored size: 544 Bytes
Contents
Vagrant.configure('2') do |config| config.vm.box = 'ubuntu/trusty64' # 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' config.vm.provision :shell, path: './provisioning.sh' end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
redsnow-0.4.4 | Vagrantfile |
redsnow-0.4.3 | Vagrantfile |
redsnow-0.4.1 | Vagrantfile |
redsnow-0.4.0 | Vagrantfile |
redsnow-0.3.7 | Vagrantfile |