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'.
17 lines
451 B
YAML
17 lines
451 B
YAML
---
|
|
- name: Playbook to manage DNS records.
|
|
hosts: ipaserver
|
|
become: true
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
# SSHFP fingerprint generated with `ssh-keygen -r host04.testzone.local`
|
|
- name: Ensure a SSHFP record is present
|
|
ipadnsrecord:
|
|
ipaadmin_password: SomeADMINpassword
|
|
zone_name: example.com
|
|
name: host04
|
|
sshfp_algorithm: 1
|
|
sshfp_fp_type: 1
|
|
sshfp_fingerprint: d21802c61733e055b8d16296cbce300efb8a167a
|