]> BookStack Code Mirror - devops/commitdiff
Removed old vagrant file
authorDan Brown <redacted>
Sat, 25 Sep 2021 20:19:44 +0000 (21:19 +0100)
committerDan Brown <redacted>
Sat, 25 Sep 2021 20:19:44 +0000 (21:19 +0100)
Don't think anyone really uses this.
Has been on Ubuntu16.04 without mention for 5 years.
Can always add back in if really desired.

Vagrantfile [deleted file]

diff --git a/Vagrantfile b/Vagrantfile
deleted file mode 100644 (file)
index 836d4f8..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-$script = <<SCRIPT
-# export http_proxy="http://proxy_host:proxy_port"
-# export https_proxy="http://proxy_host:proxy_port"
-wget https://raw.githubusercontent.com/BookStackApp/devops/master/scripts/installation-ubuntu-16.04.sh
-chmod a+x installation-ubuntu-16.04.sh
-./installation-ubuntu-16.04.sh
-echo "BookStack available by url: http://localhost:8080"
-SCRIPT
-
-VAGRANTFILE_API_VERSION = "2"
-
-Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
-  config.vm.provider "virtualbox" do |vb|
-    vb.cpus = 1
-    vb.memory = 1024
-    vb.name = 'bookstack'
-  end
-                
-  config.vm.define :bookstack do |config|
-    config.vm.box = "ubuntu/xenial64"
-    config.vm.boot_timeout = 1800
-    config.vm.provision "shell", inline: $script
-    config.vm.network "forwarded_port", guest: 80, host: 8080
-  end
-end
-