##// END OF EJS Templates
vagrant: update vagrant image to buster from jessie...
Augie Fackler -
r43909:7fd16dda default
parent child Browse files
Show More
@@ -1,13 +1,13 b''
1 1 # -*- mode: ruby -*-
2 2
3 3 Vagrant.configure('2') do |config|
4 # Debian 8.1 x86_64 without configuration management software
5 config.vm.box = "debian/jessie64"
4 # Debian 10.1 x86_64 without configuration management software
5 config.vm.box = "debian/buster64"
6 6 config.vm.hostname = "tests"
7 7
8 8 config.vm.define "tests" do |conf|
9 9 conf.vm.provision :file, source: "run-tests.sh", destination:"run-tests.sh"
10 10 conf.vm.provision :shell, path: "provision.sh"
11 11 conf.vm.synced_folder "../..", "/hgshared"
12 12 end
13 13 end
General Comments 0
You need to be logged in to leave comments. Login now