ansible-role-mastodon/tasks/main.yml

12 lines
285 B
YAML
Raw Normal View History

2022-11-19 10:10:57 +01:00
---
- name: Ensure bare metal installation
include_tasks: bare.yml
when: mastodon_bare_installation
2022-11-19 10:54:31 +01:00
- import_tasks: ubuntu.yml
when: ansible_facts['distribution'] == 'Ubuntu'
2022-11-19 10:10:57 +01:00
- name: Ensure docker installation
include_tasks: docker.yml
when: not mastodon_bare_installation