drop wheezy support

Removes the Vagrant set up for Debian wheezy and makes the installer abort and complain if started
on wheezy.
This commit is contained in:
Lucas Bickel 2018-11-21 02:04:20 +01:00
parent ffc48a50d2
commit 1d7823468f
4 changed files with 4 additions and 17 deletions

6
Vagrantfile vendored
View file

@ -60,12 +60,6 @@ Vagrant.configure("2") do |config|
os.vm.box = "bento/debian-9.2"
provision_libretime(os, "debian.sh", installer_args)
end
config.vm.define "debian-wheezy" do |os|
STDERR.puts 'WARNING: The "debian-wheezy" option is deprecated. Please migrate to "debian-stretch".'
STDERR.puts
os.vm.box = "bento/debian-7.11"
provision_libretime(os, "debian.sh", installer_args)
end
config.vm.define "centos" do |os|
os.vm.box = 'centos/7'
provision_libretime(os, "centos.sh", installer_args + "--selinux")