Switched to a vagrant box that works for Ubuntu Xenial

This commit is contained in:
Silke Meyer 2016-11-20 15:32:57 +01:00
parent 2308a7d33e
commit d0d746a3be
1 changed files with 7 additions and 7 deletions

14
Vagrantfile vendored
View File

@ -7,6 +7,7 @@ server_timezone = "UTC"
public_folder = "/vagrant" public_folder = "/vagrant"
Vagrant.configure(2) do |config| Vagrant.configure(2) do |config|
######################################################################
# Set server to Ubuntu 14.04 # Set server to Ubuntu 14.04
config.vm.define "trusty" do |trusty| config.vm.define "trusty" do |trusty|
trusty.vm.box = "ubuntu/trusty64" trusty.vm.box = "ubuntu/trusty64"
@ -23,14 +24,12 @@ Vagrant.configure(2) do |config|
# Create a static IP # Create a static IP
trusty.vm.network :private_network, ip: server_ip_trusty trusty.vm.network :private_network, ip: server_ip_trusty
# Share a folder between host and guest
trusty.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant"
end end
######################################################################
# Set server to Ubuntu 16.04 # Set server to Ubuntu 16.04
config.vm.define "xenial" do |xenial| config.vm.define "xenial" do |xenial|
xenial.vm.box = "ubuntu/xenial64" xenial.vm.box = "boxcutter/ubuntu1604"
# Disable automatic box update checking. If you disable this, then # Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs # boxes will only be checked for updates when the user runs
@ -44,11 +43,12 @@ Vagrant.configure(2) do |config|
# Create a static IP # Create a static IP
xenial.vm.network :private_network, ip: server_ip_xenial xenial.vm.network :private_network, ip: server_ip_xenial
# Share a folder between host and guest
xenial.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant"
end end
######################################################################
# Share a folder between host and guest
config.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant"
# Provider-specific configuration so you can fine-tune various # Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options. # backing providers for Vagrant. These expose provider-specific options.