12 lines
384 B
YAML
Raw Normal View History

2020-10-13 16:18:38 -07: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'