Merge pull request #824 from paddatrapper/vagrant-buster

Use official Debian Buster Vagrant image
This commit is contained in:
Robb 2019-06-30 08:11:31 -04:00 committed by GitHub
commit 977b5c002c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

3
Vagrantfile vendored
View File

@ -56,8 +56,7 @@ Vagrant.configure("2") do |config|
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"
os.vm.box = "debian/buster64"
# TODO: Remove the manual flags after buster is released
provision_libretime(os, "debian.sh", installer_args + "--distribution=debian --release=buster")
end