mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 18:55:53 +00:00
This patch adds 'name' to all test playbook tasks that did not have it, fixing ansible-lint's error 'unnamed-task'.
11 lines
228 B
YAML
11 lines
228 B
YAML
---
|
|
- name: Playbook to ensure the DNS zones enabled.
|
|
hosts: ipaserver
|
|
|
|
tasks:
|
|
- name: Ensure DNS zone is enabled
|
|
ipadnszone:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: 26testzone.test
|
|
state: enabled
|