mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 13:32:10 +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
396 B
YAML
14 lines
396 B
YAML
---
|
|
- name: Servicedelegationrule principal member absent example
|
|
hosts: ipaserver
|
|
become: no
|
|
|
|
tasks:
|
|
- name: Ensure principal member test/example.com is absent in servicedelegationrule test-delegation-rule
|
|
ipaservicedelegationrule:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: test-delegation-rule
|
|
principal: test/example.com
|
|
action: member
|
|
state: absent
|