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