distgit: Install mod_auth_openidc via modules in RHEL8

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2020-05-22 17:54:51 +02:00
parent 3ed325d3b7
commit 3ad71fd2a0

View file

@ -19,6 +19,17 @@
tags:
- distgit
- name: Enable the mod_auth_openidc module on rhel8
copy:
dest: /etc/dnf/modules.d/mod_auth_openidc.module
content: |
[mod_auth_openidc]
name=mod_auth_openidc
stream=2.3
profiles=
state=enabled
when: env == "staging"
- name: install the needed packages
package: name={{item}} state=present
with_items:
@ -27,7 +38,7 @@
- mod_ssl
- mod_auth_gssapi
- /usr/sbin/semanage
# - mod_auth_openidc
- mod_auth_openidc
when: env == "staging"
tags:
- distgit