Add support for Buster in the installer
This commit is contained in:
parent
a1c2d7b695
commit
a414bc3418
3 changed files with 96 additions and 4 deletions
6
Vagrantfile
vendored
6
Vagrantfile
vendored
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue