feat: ubuntu compatibility

This commit is contained in:
Malik Kennedy 2024-03-16 18:17:20 +00:00
commit b9d9874a00
No known key found for this signature in database
22 changed files with 222 additions and 26 deletions

View file

@ -5,11 +5,17 @@
tags:
- prereqs
- name: Include firewall config tasks
ansible.builtin.include_tasks: firewalld.yml
when: keycloak_configure_firewalld
- name: Debian specific tasks
ansible.builtin.include_tasks: debian.yml
when: ansible_facts.os_family == "Debian"
tags:
- firewall
- unbound
- name: RedHat specific tasks
ansible.builtin.include_tasks: redhat.yml
when: ansible_facts.os_family == "RedHat"
tags:
- unbound
- name: Include install tasks
ansible.builtin.include_tasks: install.yml
@ -26,6 +32,7 @@
when:
- sso_apply_patches is defined and sso_apply_patches
- sso_enable is defined and sso_enable
- ansible_facts.os_family == "RedHat"
tags:
- install
- patch