mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-13 09:11:24 +00:00
8e2f81c415
-> Changed specific pieces that are recommended to be changed in Ansible 2.7 and higher (such as using fail_msg and success_msg, not just msg for assertions -> Improved the getkeytab adhoc playbook for flexibility and delegations against a IPA server, as well as forcing the choice of the user with permissions that can perform the action rather than the default "admin" user in FreeIPA as a security fix.
39 lines
879 B
YAML
39 lines
879 B
YAML
---
|
|
# Configures an IPA client for the Rocky infrastructure
|
|
|
|
- name: Configure IPA client
|
|
hosts: ipaclients
|
|
become: true
|
|
vars_files:
|
|
- vars/encpass.yml
|
|
- vars/ipaclient.yml
|
|
|
|
pre_tasks:
|
|
- name: Check if ansible cannot be run here
|
|
stat:
|
|
path: /etc/no-ansible
|
|
register: no_ansible
|
|
|
|
- name: Verify if we can run ansible
|
|
assert:
|
|
that:
|
|
- "not no_ansible.stat.exists"
|
|
success_msg: "We are able to run on this node"
|
|
fail_msg: "/etc/no-ansible exists - skipping run on this node"
|
|
|
|
# - name: Check if we can see LDAP srv records
|
|
|
|
|
|
roles:
|
|
- role: freeipa.ansible_freeipa.ipaclient
|
|
state: present
|
|
|
|
post_tasks:
|
|
- name: Touching run file that ansible has ran here
|
|
file:
|
|
path: /var/log/ansible.run
|
|
state: touch
|
|
mode: '0644'
|
|
owner: root
|
|
group: root
|