Added vagrant machine trusty with Ubuntu 14.04 LTS
This commit is contained in:
parent
a88f338560
commit
47e66aa646
1 changed files with 8 additions and 0 deletions
8
vagrantSandbox/Vagrantfile
vendored
8
vagrantSandbox/Vagrantfile
vendored
|
@ -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
|
||||
|
|
Reference in a new issue