summaryrefslogtreecommitdiffstats
path: root/roles/desktop/tasks/main.yml
blob: ba2750ab10c1ccffc0f9d93d597fe732c9c64ab0 (plain)
1
2
3
4
5
6
7
8
9
---
- include_tasks: Debian.yml
  when: ansible_os_family | lower == 'debian'

- include_tasks: Fedora.yml
  when:  ansible_distribution | lower == 'fedora'

- include_tasks: RedHat.yml
  when: (ansible_os_family | lower == 'redhat') and (ansible_distribution | lower != 'fedora')