Role-tags for other playbooks

This commit is contained in:
Mark Janssen 2024-07-18 22:02:33 +02:00
parent ecf68bd0cf
commit d8efc9cb12
4 changed files with 7 additions and 7 deletions

View file

@ -3,4 +3,4 @@
- hosts: debian - hosts: debian
gather_facts: true gather_facts: true
roles: roles:
- common - { role: "common", tags: [ "common" ] }

View file

@ -2,5 +2,5 @@
- hosts: fotos - hosts: fotos
roles: roles:
- common - { role: "common", tags: [ "common" ] }
- photos - { role: "photos", tags: [ "photos" ] }

View file

@ -2,5 +2,5 @@
- hosts: git-ci - hosts: git-ci
roles: roles:
- common - { role: "common", tags: [ "common" ] }
- git-ci - { role: "git-ci", tags: [ "git-ci" ] }

View file

@ -2,5 +2,5 @@
- hosts: services - hosts: services
roles: roles:
- common - { role: "common", tags: [ "common" ] }
- services - { role: "services", tags: [ "services" ] }