Merge pull request #901 from paddatrapper/vagrant
Update Debian Vagrant Boxes
This commit is contained in:
commit
5ebdf2ac33
2 changed files with 6 additions and 6 deletions
4
Vagrantfile
vendored
4
Vagrantfile
vendored
|
@ -51,11 +51,11 @@ Vagrant.configure("2") do |config|
|
||||||
provision_libretime(os, "debian.sh", installer_args)
|
provision_libretime(os, "debian.sh", installer_args)
|
||||||
end
|
end
|
||||||
config.vm.define "debian-stretch" do |os|
|
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)
|
provision_libretime(os, "debian.sh", installer_args)
|
||||||
end
|
end
|
||||||
config.vm.define "debian-buster" do |os|
|
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)
|
provision_libretime(os, "debian.sh", installer_args)
|
||||||
end
|
end
|
||||||
config.vm.define "centos" do |os|
|
config.vm.define "centos" do |os|
|
||||||
|
|
|
@ -96,15 +96,15 @@ offers the option to choose a different operation system according to you needs.
|
||||||
| OS | Command | Comment |
|
| OS | Command | Comment |
|
||||||
| ------ | ------------------- | ------- |
|
| ------ | ------------------- | ------- |
|
||||||
| Debian 10 | `vagrant up debian-buster` | Install on Debian Buster. |
|
| Debian 10 | `vagrant up debian-buster` | Install on Debian Buster. |
|
||||||
| Debian 9.6 | `vagrant up debian-stretch` | Install on current Debian Stretch. |
|
| 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` | Experimental install on current Ubuntu Bionic Beaver. |
|
| 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. |
|
| 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. |
|
| 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
|
## Troubleshooting
|
||||||
|
|
||||||
If anything fails during the initial provisioning step you can try running `vagrant provision`
|
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`.
|
supported steps are `prepare`, `install`, `install-mkdocs` and `start-mkdocs`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue