From 5ef232a72c6c55393de3dd101fc8f6e080d48d8e Mon Sep 17 00:00:00 2001 From: Bill Burton Date: Wed, 12 Apr 2017 12:51:36 -0400 Subject: [PATCH] Switch Vagrantfile to use bento boxes for ubuntu #158 --- Vagrantfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index cf7c41192..fb41c910e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -38,7 +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-xenial" do |os| + os.vm.box = "bento/ubuntu-16.04" + provision_libretime(os, "ubuntu.sh", installer_args + "--distribution=ubuntu --release=xenial") + end + config.vm.define "ubuntu-trusty" do |os| + os.vm.box = "bento/ubuntu-14.04" + provision_libretime(os, "ubuntu.sh", installer_args + "--distribution=ubuntu --release=trusty") + 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 + "--distribution=ubuntu --release=trusty") end