CentOS 8 doesn't apache doesn't read /etc/sysconfig/httpd anymore so try to set keytab path location in apache config files.
15 lines
304 B
YAML
15 lines
304 B
YAML
---
|
|
- name: install packages
|
|
package:
|
|
name: mod_auth_gssapi
|
|
state: installed
|
|
notify: restart apache
|
|
|
|
- name: set keytab path
|
|
copy:
|
|
dest: /etc/httpd/conf.local.d/00-gssapi.conf
|
|
src: gssapi.conf
|
|
mode: 0644
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|
|
notify: restart apache
|