From e44472152d4b0dcbcb163cd65295c55c95e9f36d Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 21 Oct 2019 18:26:35 +0200 Subject: [PATCH 1/3] always use latest debian stretch box --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 7fe63fbd5..2347c9088 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -51,7 +51,7 @@ Vagrant.configure("2") do |config| provision_libretime(os, "debian.sh", installer_args) end config.vm.define "debian-stretch" do |os| - os.vm.box = "bento/debian-9.6" + os.vm.box = "bento/debian-9" provision_libretime(os, "debian.sh", installer_args) end config.vm.define "debian-buster" do |os| From d06469309df86206caf3cb6f48e663e5116b8a24 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 21 Oct 2019 18:27:27 +0200 Subject: [PATCH 2/3] use bento box for debian buster --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 2347c9088..57606be62 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -55,7 +55,7 @@ Vagrant.configure("2") do |config| provision_libretime(os, "debian.sh", installer_args) end config.vm.define "debian-buster" do |os| - os.vm.box = "generic/debian10" + os.vm.box = "bento/debian-10" provision_libretime(os, "debian.sh", installer_args) end config.vm.define "centos" do |os| From 76199899380d038471f3925b79d08a65ef8b02c1 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Tue, 22 Oct 2019 11:52:18 +0200 Subject: [PATCH 3/3] update stretch version in docs --- docs/vagrant.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/vagrant.md b/docs/vagrant.md index 42139f85d..08538d218 100644 --- a/docs/vagrant.md +++ b/docs/vagrant.md @@ -96,15 +96,15 @@ offers the option to choose a different operation system according to you needs. | OS | Command | Comment | | ------ | ------------------- | ------- | | Debian 10 | `vagrant up debian-buster` | Install on Debian Buster. | -| Debian 9.6 | `vagrant up debian-stretch` | Install on current Debian Stretch. | -| Ubuntu 18.04 | `vagrant up ubuntu-bionic` | Experimental install on current Ubuntu Bionic Beaver. | +| Debian 9 | `vagrant up debian-stretch` | Install on current Debian Stretch. Needs manual intervention due to Liquidsoap 1.3.3. | +| Ubuntu 18.04 | `vagrant up ubuntu-bionic` | Install on current Ubuntu Bionic Beaver. | | Ubuntu 16.04 | `vagrant up ubuntu-xenial` | Install on Ubuntu Xenial Xerus. | | CentOS | `vagrant up centos` | Extremely experimental install on 7.3 with native systemd support and activated SELinux. Needs manual intervention due to Liquidsoap 1.3.3. | ## Troubleshooting If anything fails during the initial provisioning step you can try running `vagrant provision` -to rerun the installer. +to re-run the installer. -If you only want to re-run parts of the installer, use `--provision-with install`. The +If you only want to re-run parts of the installer, use `--provision-with $step`. The supported steps are `prepare`, `install`, `install-mkdocs` and `start-mkdocs`.