Added vagrant machine trusty with Ubuntu 14.04 LTS

This commit is contained in:
Bernhard F.W. Gschaider 2014-05-30 23:39:46 +02:00
parent a88f338560
commit 47e66aa646

View file

@ -28,6 +28,14 @@ Vagrant.configure("2") do |config|
# make sure each CPU has enough memory (at least 1.5 Gig)
vb.memory=512*[(1+nrCPU),3].max
end
config.vm.define :trusty do |trusty|
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.box_check_update = true
trusty.vm.provision :shell do |s|
s.args = "trusty"
s.path = "initUbunutuScript.sh"
end
end
# default