chore: move out the OS-specific roles

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-07-12 21:09:06 +02:00
parent c7293cd6ea
commit cfc02949d6
Signed by: mfocko
SSH key fingerprint: SHA256:icm0fIOSJUpy5+1x23sfr+hLtF9UhY8VpMC7H4WFJP8
5 changed files with 2 additions and 2 deletions

View file

@ -4,11 +4,11 @@
gather_facts: true gather_facts: true
roles: roles:
# Handle distribution-specific changes before the generic ones # Handle distribution-specific changes before the generic ones
- role: system/fedora - role: os/fedora
become: true become: true
when: ansible_distribution == "Fedora" when: ansible_distribution == "Fedora"
- role: system/el - role: os/el
become: true become: true
when: ansible_distribution in [ "AlmaLinux", "CentOS" ] when: ansible_distribution in [ "AlmaLinux", "CentOS" ]