changeset 43509:7fd16ddabaa0

vagrant: update vagrant image to buster from jessie I honestly have no idea if this works since I don't use vagrant, but looking around online suggests it should work fine. Differential Revision: https://phab.mercurial-scm.org/D7309
author Augie Fackler <augie@google.com>
date Thu, 07 Nov 2019 14:59:11 -0500
parents e468ebfcb4ce
children 85628a595c37
files contrib/vagrant/Vagrantfile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/contrib/vagrant/Vagrantfile	Thu Nov 07 14:56:30 2019 -0500
+++ b/contrib/vagrant/Vagrantfile	Thu Nov 07 14:59:11 2019 -0500
@@ -1,8 +1,8 @@
 # -*- mode: ruby -*-
 
 Vagrant.configure('2') do |config|
-  # Debian 8.1 x86_64 without configuration management software
-  config.vm.box = "debian/jessie64"
+  # Debian 10.1 x86_64 without configuration management software
+  config.vm.box = "debian/buster64"
   config.vm.hostname = "tests"
 
   config.vm.define "tests" do |conf|