
NB There was an issue with https://review.openstack.org/#/c/395932/ which meant that "pid1_name != systemd" got changed to "ansible_service_mgr == systemd" - since we are removing trusty this task has been removed, but a fix for Newton will be made. Change-Id: I2f502737e2cc52678cf479de2ef94b818e253622 Implements: blueprint trusty-removal
13 lines
260 B
Ruby
13 lines
260 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.box = "ubuntu/xenial64"
|
|
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
|
|
end
|