mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
This patch adds 'name' to all example playbook tasks that did not have it, fixing ansible-lint's error 'unnamed-task'.
15 lines
344 B
YAML
15 lines
344 B
YAML
---
|
|
- name: Playbook to manage DNS forward zone
|
|
hosts: ipaserver
|
|
become: true
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Ensure DNS forward zone is present with forward port
|
|
ipadnsforwardzone:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: example.com
|
|
forwarders:
|
|
- ip_address: 192.168.100.123
|
|
port: 8063
|