Extracted the basic role from the madonsible playbook

This commit is contained in:
Emmanouil Kampitakis
2018-06-17 08:48:53 +00:00
commit eb16cabd34
18 changed files with 207 additions and 0 deletions

10
tests/Vagrantfile vendored Normal file
View File

@@ -0,0 +1,10 @@
Vagrant.configure(2) do |config|
config.vm.hostname = "vagrant.example.com"
config.vm.box = "debian/stretch64"
config.ssh.insert_key = false
config.vm.provision "ansible" do |ansible|
ansible.verbose ="vv"
ansible.playbook = "test.yml"
end
end