Merge playbooks in one

This commit is contained in:
flyingscorpio@clevo 2022-03-11 22:30:11 +01:00
parent f99b971d03
commit 99355ed3de
3 changed files with 5 additions and 14 deletions

View file

@ -1,7 +0,0 @@
---
- name: "Install apache"
hosts: tunuifranken.info
gather_facts: no
roles:
- role: "apache-install"

View file

@ -1,7 +0,0 @@
---
- name: "Install mariadb"
hosts: tunuifranken.info
gather_facts: no
roles:
- role: "mariadb-install"

5
playbook.yml Normal file
View file

@ -0,0 +1,5 @@
---
- hosts: lime2
roles:
- role: "apache-install"
- role: "mariadb-install"