Some vagrant hackery for testing the debs

This commit is contained in:
Richard van der Hoff 2019-05-17 12:56:46 +01:00
parent da5ef0bb42
commit afb463fb7a
4 changed files with 48 additions and 0 deletions

13
debian/test/stretch/Vagrantfile vendored Normal file
View file

@ -0,0 +1,13 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
ver = `cd ../../..; dpkg-parsechangelog -S Version`.strip()
Vagrant.configure("2") do |config|
config.vm.box = "debian/stretch64"
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.synced_folder "../../../../debs", "/debs", type: "nfs"
config.vm.provision "shell", path: "../provision.sh"
end