mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 13:32:10 +00:00
Use Fully Qualified Collection Name (FQCN) for ansible builtins. This is ansible.builtin.set_fact instead of set_fact for example and aplies for all actions that are part of ansible.builtin. All the replaced ansible.builtins: assert, command, copy, debug, fail, fetch, file, import_playbook, import_tasks, include_role, include_tasks, include_vars, package, set_fact, shell, slurp, stat, systemd
16 lines
344 B
YAML
16 lines
344 B
YAML
---
|
|
- name: Playbook to handle global IPA configuration
|
|
hosts: ipaserver
|
|
become: no
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: Query IPA global configuration
|
|
ipaconfig:
|
|
ipaadmin_password: SomeADMINpassword
|
|
register: serverconfig
|
|
|
|
- name: Display current configuration.
|
|
ansible.builtin.debug:
|
|
msg: "{{ serverconfig }}"
|