mirror of
https://github.com/vale981/matrix-docker-ansible-deploy
synced 2025-03-11 21:46:39 -04:00
12 lines
384 B
YAML
12 lines
384 B
YAML
![]() |
---
|
||
|
|
||
|
- 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'
|