style: make ansible-lint happier

This commit is contained in:
VC
2024-07-05 11:53:32 +02:00
parent 4bed35c4f3
commit a0eafea5ff
9 changed files with 50 additions and 47 deletions

View File

@@ -1,25 +1,25 @@
---
- name: include ttrss for web1
include_tasks: ttrss.yml
- name: Include ttrss for web1
ansible.builtin.include_tasks: ttrss.yml
when: inventory_hostname == 'web1.dmz.mateu.be'
- name: include matomo for web2
include_tasks: matomo.yml
- name: Include matomo for web2
ansible.builtin.include_tasks: matomo.yml
when: inventory_hostname == 'web2.dmz.mateu.be'
- name: WP for NintendojoFR
include_tasks: wp_dojo.yml
ansible.builtin.include_tasks: wp_dojo.yml
when: inventory_hostname == 'web2.dmz.mateu.be'
# Scootaloo
- name: Scootaloo config for m.nintendojo.fr
include_tasks: scootaloo_config.yml
ansible.builtin.include_tasks: scootaloo_config.yml
when: inventory_hostname == 'masto1.dmz.mateu.be'
- name: Scootaloo for Mastodon
include_tasks: scootaloo.yml
ansible.builtin.include_tasks: scootaloo.yml
when: inventory_hostname in groups['rorservers']
- name: tootctl (docker) for mastodon
include_tasks: tootctl_docker.yml
- name: Tootctl (docker) for mastodon
ansible.builtin.include_tasks: tootctl_docker.yml
when: inventory_hostname in groups['dockerservers']
- name: tootctl (no docker) for mastodon
include_tasks: tootctl_nodocker.yml
- name: Tootctl (no docker) for mastodon
ansible.builtin.include_tasks: tootctl_nodocker.yml
when: inventory_hostname in groups['mastodonservers']