123456789101112131415161718 |
- # -*- mode: ruby -*-
- # vi: set ft=ruby :
- Vagrant.configure("2") do |config|
- config.vm.box = "{{ cookiecutter.target_os|lower}}/{{ cookiecutter.target_os_version }}"
-
- ENV['ANSIBLE_ROLES_PATH'] = "#{File.dirname(__FILE__)}/.."
- config.vm.provision "shell",
- inline: "DEBIAN_FRONTEND=noninteractive sudo apt-get -y install python"
- config.vm.provision "ansible" do |ansible|
- ansible.playbook = "tests/test-playbook.yml"
- ansible.sudo = "true"
- end
- end
|