mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 05:22:05 +00:00
Some example playbooks do not had the parameter `ipaadmin_password` set, and some had a different value than the standard value "SomeADMINpassword". This patch fixes this difference in all example playbooks.
14 lines
350 B
YAML
14 lines
350 B
YAML
---
|
|
- name: Playbook to manage an automount key
|
|
hosts: ipaserver
|
|
|
|
tasks:
|
|
- name: Ensure aumount key TestKey is renamed to NewKeyName
|
|
ipaautomountkey:
|
|
ipaadmin_password: SomeADMINpassword
|
|
automountlocationcn: TestLocation
|
|
automountmapname: TestMap
|
|
automountkey: TestKey
|
|
newname: NewKeyName
|
|
state: renamed
|