Files
ansible/roles/webapps/tasks/main.yml

18 lines
646 B
YAML

---
- name: Include ttrss for web1
ansible.builtin.include_tasks: ttrss.yml
when: inventory_hostname == 'web1.dmz.mateu.be'
- name: Include matomo for web2
ansible.builtin.include_tasks: matomo.yml
when: inventory_hostname == 'web2.dmz.mateu.be'
- name: WP for NintendojoFR
ansible.builtin.include_tasks: wp_dojo.yml
when: inventory_hostname == 'web2.dmz.mateu.be'
- name: Oolatoocs for NintendojoFR
ansible.builtin.include_tasks: oolatoocs.yml
when: inventory_hostname in groups['mastodonservers']
- name: Tootctl for mastodon
ansible.builtin.include_tasks: tootctl.yml
when: inventory_hostname in groups['mastodonservers']