nginx: Enable nginx 1.24 module for EL9

This commit is contained in:
Timo Makinen 2024-05-10 15:12:03 +00:00
parent e35f425d07
commit 42fddcc278

View file

@ -14,7 +14,22 @@
notify: Restart nginx
when:
- ansible_os_family == "RedHat"
- ansible_distribution_major_version | int >= 8
- ansible_distribution_major_version | int == 8
- ansible_distribution != "Fedora"
- name: Enable nginx:124 module
ansible.builtin.command:
argv:
- dnf
- module
- -y
- enable
- nginx:1.22
creates: /etc/dnf/modules.d/nginx.module
notify: Restart nginx
when:
- ansible_os_family == "RedHat"
- ansible_distribution_major_version | int >= 9
- ansible_distribution != "Fedora"
- name: Install packages