Skip to content
Snippets Groups Projects
Commit b8399872 authored by Nils Schneider's avatar Nils Schneider
Browse files

add Vagrantfile

parent ca756376
No related branches found
No related tags found
No related merge requests found
# -*- 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment