11 lines
285 B
YAML
11 lines
285 B
YAML
---
|
|
- name: Ensure bare metal installation
|
|
include_tasks: bare.yml
|
|
when: mastodon_bare_installation
|
|
|
|
- import_tasks: ubuntu.yml
|
|
when: ansible_facts['distribution'] == 'Ubuntu'
|
|
|
|
- name: Ensure docker installation
|
|
include_tasks: docker.yml
|
|
when: not mastodon_bare_installation
|