mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 13:32:10 +00:00
This patch add support for the attributes `maxtostname` and `ca_renewal_master_server` attributes that were missing and also provide a more complete set of tests.
15 lines
287 B
YAML
15 lines
287 B
YAML
---
|
|
- name: Playbook to handle global DNS configuration
|
|
hosts: ipaserver
|
|
become: no
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: Query IPA global configuration
|
|
ipaconfig:
|
|
ipaadmin_password: SomeADMINpassword
|
|
register: serverconfig
|
|
|
|
- debug:
|
|
msg: "{{ serverconfig }}"
|