From d8efc9cb12001ba5a5ff6a85e9292321722800cd Mon Sep 17 00:00:00 2001 From: Mark Janssen -- Sig-I/O Automatisering Date: Thu, 18 Jul 2024 22:02:33 +0200 Subject: [PATCH] Role-tags for other playbooks --- common.yaml | 2 +- fotos.yaml | 4 ++-- git-ci.yaml | 4 ++-- services.yaml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/common.yaml b/common.yaml index 3e0cb27..0cbfe1b 100644 --- a/common.yaml +++ b/common.yaml @@ -3,4 +3,4 @@ - hosts: debian gather_facts: true roles: - - common + - { role: "common", tags: [ "common" ] } diff --git a/fotos.yaml b/fotos.yaml index f0edd7b..7357e31 100644 --- a/fotos.yaml +++ b/fotos.yaml @@ -2,5 +2,5 @@ - hosts: fotos roles: - - common - - photos + - { role: "common", tags: [ "common" ] } + - { role: "photos", tags: [ "photos" ] } diff --git a/git-ci.yaml b/git-ci.yaml index fa9f7b7..711dac4 100644 --- a/git-ci.yaml +++ b/git-ci.yaml @@ -2,5 +2,5 @@ - hosts: git-ci roles: - - common - - git-ci + - { role: "common", tags: [ "common" ] } + - { role: "git-ci", tags: [ "git-ci" ] } diff --git a/services.yaml b/services.yaml index 2a1bd65..e66fc11 100644 --- a/services.yaml +++ b/services.yaml @@ -2,5 +2,5 @@ - hosts: services roles: - - common - - services + - { role: "common", tags: [ "common" ] } + - { role: "services", tags: [ "services" ] }