From b8399872cbf800f144b52cb528a4fac72274cc2c Mon Sep 17 00:00:00 2001 From: Nils Schneider <nils.schneider@posteo.de> Date: Sat, 22 Oct 2016 12:47:24 +0200 Subject: [PATCH] add Vagrantfile --- Vagrantfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..8372733 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,31 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# All Vagrant configuration is done below. The "2" in Vagrant.configure +# configures the configuration version (we support older styles for +# backwards compatibility). Please don't change it unless you know what +# you're doing. +Vagrant.configure(2) do |config| +# config.vm.provision "ansible" do |ansible| +# ansible.playbook = "repo/playbook.yml" +# ansible.extra_vars = { ansible_python_interpreter: "/usr/bin/env python2" } +# end + + config.vm.network "private_network", type: "dhcp" + + config.vm.define "burgtor" do |config| + config.vm.box = "terrywang/archlinux" + end + + config.vm.define "holstentor" do |config| + config.vm.box = "terrywang/archlinux" + end + + config.vm.define "huextertor" do |config| + config.vm.box = "terrywang/archlinux" + end + + config.vm.define "muehlentor" do |config| + config.vm.box = "terrywang/archlinux" + end +end -- GitLab