mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 13:32:10 +00:00
13 lines
286 B
YAML
13 lines
286 B
YAML
---
|
|
- name: Permission present example
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Ensure permission TestPerm1 is renamed to TestPermRenamed
|
|
ipapermission:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestPerm1
|
|
rename: TestPermRenamed
|
|
state: renamed
|