You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
964 B

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |vb|
vb.memory = "512"
end
config.vm.define "centos-7" do |machine|
machine.vm.box = "minimal/centos7"
machine.vm.provision "shell", inline: "yum update -y"
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/vagrant.yml"
end
end
config.vm.define "debian-jessie" do |machine|
machine.vm.box = "minimal/jessie64"
machine.vm.provision "shell", inline: "apt-get update && apt-get install -y python"
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/vagrant.yml"
end
end
config.vm.define "ubuntu-xenial" do |machine|
machine.vm.box = "ubuntu/xenial64"
machine.vm.provision "shell", inline: "apt-get update && apt-get install -y python"
machine.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/vagrant.yml"
end
end
end