From 488a1e8ad70cd4a1b4237b448c8a4551286ad4d5 Mon Sep 17 00:00:00 2001 From: Nicolas Roman Date: Wed, 13 Feb 2019 15:09:23 +0100 Subject: [PATCH] added vagrantfile for debian and openbsd --- Vagrantfile | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..c8aa4d3 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,60 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant::DEFAULT_SERVER_URL.replace('https://vagrantcloud.com') + +# Load ~/.VagrantFile if exist, permit local config provider +vagrantfile = File.join("#{Dir.home}", '.VagrantFile') +load File.expand_path(vagrantfile) if File.exists?(vagrantfile) + +Vagrant.configure('2') do |config| + config.vm.synced_folder "./", "/vagrant", type: "rsync", rsync__exclude: [ '.vagrant', '.git' ] + config.ssh.shell = "/bin/sh" + + $deps = <