Add xenial support to the Vagrantfile

Local testing of the role is now possible using
Ubuntu xenial with the command: vagrant up ubuntu1604

Change-Id: If4f3335986df214970e97435d779499eddda9436
This commit is contained in:
Travis Truman 2016-09-26 12:10:19 -04:00
parent 1f682b09ef
commit e2f240b484

26
Vagrantfile vendored
View File

@ -1,12 +1,26 @@
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
config.vm.define "ubuntu1404" do |trusty|
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end
config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get install -y python2.7
./run_tests.sh
SHELL
end
end