mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 05:22:05 +00:00
Fixed several issues found during code review and change AutomountkeyModule to use IPAAnsibleModule instead of deprecated FreeIPABaseModule.
13 lines
273 B
YAML
13 lines
273 B
YAML
---
|
|
- name: Playbook to manage an automount key
|
|
hosts: ipaserver
|
|
|
|
tasks:
|
|
- name: Ensure autmount key is present
|
|
ipaautomountkey:
|
|
ipaadmin_password: SomeADMINpassword
|
|
location: TestLocation
|
|
mapname: TestMap
|
|
key: TestKey
|
|
state: absent
|