mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 02:35:54 +00:00
Fixed several issues found during code review and change AutomountkeyModule to use IPAAnsibleModule instead of deprecated FreeIPABaseModule.
14 lines
343 B
YAML
14 lines
343 B
YAML
---
|
|
- name: Playbook to manage an automount key
|
|
hosts: ipaserver
|
|
|
|
tasks:
|
|
- name: Ensure aumount key TestKey is renamed to NewKeyName
|
|
ipaautomountkey:
|
|
ipaadmin_password: password01
|
|
automountlocationcn: TestLocation
|
|
automountmapname: TestMap
|
|
automountkey: TestKey
|
|
newname: NewKeyName
|
|
state: renamed
|