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" ] }