tag plays in playbooks (instead of tasks in roles)
All checks were successful
/ Ansible Lint (pull_request) Successful in 3m18s
/ Ansible Lint (push) Successful in 2m20s

This commit is contained in:
June 2026-05-18 18:14:51 +02:00
commit 73e77bde70
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
10 changed files with 49 additions and 20 deletions

View file

@ -1,5 +1,7 @@
- name: Ensure NGINX repo setup and nginx install on relevant hosts
hosts: nginx_hosts:nextcloud_hosts
tags:
- nextcloud_nginx
tasks:
- name: Ensure NGINX repo is setup
ansible.builtin.include_role:
@ -13,6 +15,8 @@
- name: Ensure Docker repo setup and package install on relevant hosts
hosts: docker_compose_hosts:nextcloud_hosts
tags:
- nextcloud_docker
tasks:
- name: Ensure Docker repo is setup
ansible.builtin.include_role:
@ -28,6 +32,8 @@
hosts: all:!hypervisors
roles:
- apt_update_and_upgrade
tags:
- apt_update_and_upgrade
- name: Run deploy Playbook
ansible.builtin.import_playbook: deploy.yaml