From 71a2c111d35ef65e753f3c36d95af0fdc8a97c1f Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Sat, 30 Jun 2018 12:11:40 +0200 Subject: [PATCH] Remove deprecated boxes from Vagrantfile --- Vagrantfile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 5840ef342..fd90065a8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -46,12 +46,6 @@ Vagrant.configure("2") do |config| os.vm.box = "bento/ubuntu-14.04" provision_libretime(os, "ubuntu.sh", installer_args) end - config.vm.define "ubuntu" do |os| - STDERR.puts 'WARNING: The "ubuntu" option is deprecated. Please migrate to "ubuntu-trusty".' - STDERR.puts - os.vm.box = "ubuntu/trusty64" - provision_libretime(os, "ubuntu.sh", installer_args) - end config.vm.define "debian-jessie" do |os| os.vm.box = "bento/debian-8.7" provision_libretime(os, "debian.sh", installer_args) @@ -64,12 +58,6 @@ Vagrant.configure("2") do |config| os.vm.box = "bento/debian-7.11" provision_libretime(os, "debian.sh", installer_args) end - config.vm.define "debian" do |os| - STDERR.puts 'WARNING: The "debian" option is deprecated. Please migrate to "debian-stretch".' - STDERR.puts - os.vm.box = "debian/jessie64" - 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")