mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 05:22:05 +00:00
This patch adds 'name' to all example playbook tasks that did not have it, fixing ansible-lint's error 'unnamed-task'.
16 lines
328 B
YAML
16 lines
328 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
|
|
|
|
- name: Display current configuration.
|
|
debug:
|
|
msg: "{{ serverconfig }}"
|