1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_i3wm.git synced 2024-08-16 10:09:53 +02:00
ansible_role_i3wm/tests/Vagrantfile

31 lines
606 B
Ruby
Raw Normal View History

2017-12-31 00:56:01 +01:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.define "debian" do |web|
web.vm.box = "debian/stretch64"
web.vm.provider "virtualbox" do |vb|
vb.memory = "512"
end
end
config.vm.define "xenial" do |web|
web.vm.box = "ubuntu/xenial64"
web.vm.provider "virtualbox" do |vb|
vb.memory = "512"
end
end
config.vm.provision :ansible do |ansible|
ansible.playbook = "playbook.yml"
ansible.groups = {
"all" => ["debian", "xenial"]
}
ansible.raw_arguments = ["-u vagrant"]
end
end