Make RedHat obsidian support work for all Linux

This commit is contained in:
Kenneth Benzie 2023-06-16 10:42:13 +01:00
parent 352ef4c8d4
commit befb02bc95
2 changed files with 3 additions and 0 deletions

View File

@ -1,2 +1,5 @@
---
- include_tasks: '{{ansible_os_family}}.yaml'
when: ansible_os_family == "Darwin" or ansible_os_family == "Windows"
- include_tasks: 'Linux.yaml'
when: ansible_os_family != "Darwin" and ansible_os_family != "Windows"