mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 18:55:53 +00:00
18 lines
364 B
YAML
18 lines
364 B
YAML
---
|
|
- name: Install {{ krb5_packages }}
|
|
package: name="{{ item }}" state=present
|
|
with_items: "{{ krb5_packages }}"
|
|
|
|
- name: Install - Backup krb5.conf
|
|
ipafstore:
|
|
backup: "{{ krb5_conf }}"
|
|
|
|
- name: Template krb5.conf
|
|
template:
|
|
src: krb5.conf.j2
|
|
dest: "{{ krb5_conf }}"
|
|
backup: no
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
force: yes |