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'.
18 lines
399 B
YAML
18 lines
399 B
YAML
---
|
|
- name: Playbook to manage DNS records.
|
|
hosts: ipaserver
|
|
become: true
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Ensure a URI record is present
|
|
ipadnsrecord:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: _ftp._tcp
|
|
record_type: 'URI'
|
|
uri_priority: 10
|
|
uri_weight: 1
|
|
uri_target: ftp://ftp.example.com/public
|
|
zone_name: example.com
|
|
state: present
|