comparison contrib/vagrant/Vagrantfile @ 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 a31ffc445f02
children
comparison
equal deleted inserted replaced
43508:e468ebfcb4ce 43509:7fd16ddabaa0
1 # -*- mode: ruby -*- 1 # -*- mode: ruby -*-
2 2
3 Vagrant.configure('2') do |config| 3 Vagrant.configure('2') do |config|
4 # Debian 8.1 x86_64 without configuration management software 4 # Debian 10.1 x86_64 without configuration management software
5 config.vm.box = "debian/jessie64" 5 config.vm.box = "debian/buster64"
6 config.vm.hostname = "tests" 6 config.vm.hostname = "tests"
7 7
8 config.vm.define "tests" do |conf| 8 config.vm.define "tests" do |conf|
9 conf.vm.provision :file, source: "run-tests.sh", destination:"run-tests.sh" 9 conf.vm.provision :file, source: "run-tests.sh", destination:"run-tests.sh"
10 conf.vm.provision :shell, path: "provision.sh" 10 conf.vm.provision :shell, path: "provision.sh"