author | Augie Fackler <raf@durin42.com> |
Thu, 03 Dec 2020 13:36:24 -0500 | |
branch | stable |
changeset 46029 | dadbd01f9393 |
parent 43509 | 7fd16ddabaa0 |
permissions | -rw-r--r-- |
# -*- mode: ruby -*- Vagrant.configure('2') do |config| # Debian 10.1 x86_64 without configuration management software config.vm.box = "debian/buster64" config.vm.hostname = "tests" config.vm.define "tests" do |conf| conf.vm.provision :file, source: "run-tests.sh", destination:"run-tests.sh" conf.vm.provision :shell, path: "provision.sh" conf.vm.synced_folder "../..", "/hgshared" end end