]> git.mxchange.org Git - friendica.git/commitdiff
Switched to a vagrant box that works for Ubuntu Xenial
authorSilke Meyer <silke@silkemeyer.net>
Sun, 20 Nov 2016 14:32:57 +0000 (15:32 +0100)
committerSilke Meyer <silke@silkemeyer.net>
Sun, 20 Nov 2016 14:32:57 +0000 (15:32 +0100)
Vagrantfile

index 129c90fb49dfa6c3d8c9f64387555beb6b7145a5..ff38151520a3dc5241d869734344df28f4568d95 100644 (file)
@@ -7,6 +7,7 @@ server_timezone = "UTC"
 public_folder = "/vagrant"
 
 Vagrant.configure(2) do |config|
+######################################################################
   # Set server to Ubuntu 14.04
   config.vm.define "trusty" do |trusty|
     trusty.vm.box = "ubuntu/trusty64"
@@ -23,14 +24,12 @@ Vagrant.configure(2) do |config|
 
     # Create a static IP
     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
 
+######################################################################
   # Set server to Ubuntu 16.04
   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
     # boxes will only be checked for updates when the user runs
@@ -44,11 +43,12 @@ Vagrant.configure(2) do |config|
 
     # Create a static IP
     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
 
+######################################################################
+  # 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
   # backing providers for Vagrant. These expose provider-specific options.