Merge "Change default vagrant box to xenial64(16.04)"
This commit is contained in:
commit
dac945260d
@ -5,14 +5,14 @@ VM_CPUS = ENV['VM_CPUS'] || "1"
|
||||
def configure_providers(vm)
|
||||
|
||||
vm.provider "virtualbox" do |vb, config|
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
config.vm.box = "ubuntu/xenial64"
|
||||
vb.gui = true
|
||||
vb.memory = VM_MEMORY
|
||||
vb.cpus = VM_CPUS
|
||||
end
|
||||
|
||||
vm.provider "libvirt" do |lb, config|
|
||||
config.vm.box = "celebdor/trusty64"
|
||||
config.vm.box = "celebdor/xenial64"
|
||||
config.vm.synced_folder './', '/vagrant', type: 'rsync'
|
||||
lb.nested = true
|
||||
lb.memory = VM_MEMORY
|
||||
|
4
devstack/samples/singlenode/Vagrantfile
vendored
4
devstack/samples/singlenode/Vagrantfile
vendored
@ -17,7 +17,7 @@ Vagrant.configure(2) do |config|
|
||||
|
||||
# Every Vagrant development environment requires a box. You can search for
|
||||
# boxes at https://atlas.hashicorp.com/search.
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
config.vm.box = "ubuntu/xenial64"
|
||||
|
||||
# Disable automatic box update checking. If you disable this, then
|
||||
# boxes will only be checked for updates when the user runs
|
||||
@ -57,7 +57,7 @@ Vagrant.configure(2) do |config|
|
||||
end
|
||||
|
||||
config.vm.provider "libvirt" do |lb, config|
|
||||
config.vm.box = "celebdor/trusty64"
|
||||
config.vm.box = "celebdor/xenial64"
|
||||
config.vm.synced_folder './', '/vagrant', type: 'rsync'
|
||||
lb.nested = true
|
||||
lb.memory = VM_MEMORY
|
||||
|
Loading…
Reference in New Issue
Block a user