📦 (installer) add Ubuntu Bionic Beaver Vagrant box

This commit is contained in:
Lucas Bickel 2018-10-12 19:35:37 +02:00
parent fa3f2fc7e1
commit 6898c4dc8e
9 changed files with 107 additions and 80 deletions

6
Vagrantfile vendored
View file

@ -38,11 +38,17 @@ Vagrant.configure("2") do |config|
installer_args="--force --in-place --verbose --postgres --apache --icecast "
# define all the OS boxes we support
config.vm.define "ubuntu-bionic" do |os|
os.vm.box = "bento/ubuntu-18.04"
provision_libretime(os, "ubuntu.sh", installer_args)
end
config.vm.define "ubuntu-xenial" do |os|
os.vm.box = "bento/ubuntu-16.04"
provision_libretime(os, "ubuntu.sh", installer_args)
end
config.vm.define "ubuntu-trusty" do |os|
STDERR.puts 'WARNING: The "ubuntu-trusty" option is deprecated. Please migrate to "ubuntu-bionic".'
STDERR.puts
os.vm.box = "bento/ubuntu-14.04"
provision_libretime(os, "ubuntu.sh", installer_args)
end