Merge pull request #901 from paddatrapper/vagrant

Update Debian Vagrant Boxes
This commit is contained in:
Lucas Bickel 2019-10-22 19:37:06 +02:00 committed by GitHub
commit 5ebdf2ac33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

4
Vagrantfile vendored
View file

@ -51,11 +51,11 @@ 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|
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|

View file

@ -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`.