Add support for Buster in the installer

This commit is contained in:
Kyle Robbertze 2019-01-10 09:08:45 +02:00
parent a1c2d7b695
commit a414bc3418
3 changed files with 96 additions and 4 deletions

6
Vagrantfile vendored
View file

@ -59,6 +59,12 @@ Vagrant.configure("2") do |config|
os.vm.box = "bento/debian-9.6"
provision_libretime(os, "debian.sh", installer_args)
end
config.vm.define "debian-buster" do |os|
# TODO: Replace with generic/debian10 once it is released
os.vm.box = "fujimakishouten/debian-buster64"
# TODO: Remove the manual flags after buster is released
provision_libretime(os, "debian.sh", installer_args + "--distribution=debian --release=buster")
end
config.vm.define "centos" do |os|
os.vm.box = 'centos/7'
provision_libretime(os, "centos.sh", installer_args + "--selinux")