mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 13:32:10 +00:00
The host's module example playbooks had syntax errors that prevented its execution. The tasks were described as dicts rather than lists.
12 lines
240 B
YAML
12 lines
240 B
YAML
---
|
|
- name: Host member managedby_host present
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- ipahost:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: host01.exmaple.com
|
|
managedby_host: server.exmaple.com
|
|
action: member
|