##// 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 # -*- 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"
11 conf.vm.synced_folder "../..", "/hgshared"
11 conf.vm.synced_folder "../..", "/hgshared"
12 end
12 end
13 end
13 end
General Comments 0
You need to be logged in to leave comments. Login now