18 lines
652 B
YAML
18 lines
652 B
YAML
---
|
|
|
|
- name: Include freshrss for web1
|
|
ansible.builtin.include_tasks: freshrss.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']
|