matrix-docker-ansible-deploy/roles/matrix-dynamic-dns/tasks/platform/main.yml

12 lines
384 B
YAML
Raw Normal View History

2020-10-14 01:18:38 +02:00
---
- include_tasks: "{{ role_path }}/tasks/platform/centos.yml"
when: ansible_distribution == 'CentOS'
# The instructions are the same for Debian, Ubuntu, and Raspbian
- include_tasks: "{{ role_path }}/tasks/platform/debian.yml"
when: ansible_distribution == 'Debian'
- include_tasks: "{{ role_path }}/tasks/platform/archlinux.yml"
when: ansible_distribution == 'Archlinux'