example playbooks: ipaselfservice examples mentioned ipadelegation.

The example playbooks for ipaselfservice were using the wrong module,
ipadelegation. This patch changes the references from ipadelegation
to ipaselfservice on these example playbooks.

Also, the attributes were changed, so the same attributes are used
throughout the examples.
This commit is contained in:
Rafael Guterres Jeffman
2021-02-01 18:21:59 -03:00
parent e2cb68de54
commit 0447143047
4 changed files with 14 additions and 14 deletions

View File

@@ -1,11 +1,11 @@
--- ---
- name: Delegation absent - name: Selfservice absent
hosts: ipaserver hosts: ipaserver
become: true become: true
tasks: tasks:
- name: Ensure delegation "basic manager attributes" is absent - name: Ensure selfservice "basic manager attributes" is absent
ipadelegation: ipaselfservice:
ipaadmin_password: SomeADMINpassword ipaadmin_password: SomeADMINpassword
name: "basic manager attributes" name: "basic manager attributes"
state: absent state: absent

View File

@@ -1,15 +1,15 @@
--- ---
- name: Delegation member absent - name: Selfservice member absent
hosts: ipaserver hosts: ipaserver
become: true become: true
tasks: tasks:
- name: Ensure delegation "basic manager attributes" member attributes employeenumber and employeetype are absent - name: Ensure selfservice "basic manager attributes" member attributes employeenumber and employeetype are absent
ipadelegation: ipaselfservice:
ipaadmin_password: SomeADMINpassword ipaadmin_password: SomeADMINpassword
name: "basic manager attributes" name: "basic manager attributes"
attribute: attribute:
- employeenumber - businesscategory
- employeetype - departmentnumber
action: member action: member
state: absent state: absent

View File

@@ -1,11 +1,11 @@
--- ---
- name: Delegation member present - name: Selfservice member present
hosts: ipaserver hosts: ipaserver
become: true become: true
tasks: tasks:
- name: Ensure delegation "basic manager attributes" member attribute departmentnumber is present - name: Ensure selfservice "basic manager attributes" member attribute departmentnumber is present
ipadelegation: ipaselfservice:
ipaadmin_password: SomeADMINpassword ipaadmin_password: SomeADMINpassword
name: "basic manager attributes" name: "basic manager attributes"
attribute: attribute:

View File

@@ -1,11 +1,11 @@
--- ---
- name: Delegation present - name: Selfservice present
hosts: ipaserver hosts: ipaserver
become: true become: true
tasks: tasks:
- name: Ensure delegation "basic manager attributes" is present - name: Ensure selfservice "basic manager attributes" is present
ipadelegation: ipaselfservice:
ipaadmin_password: SomeADMINpassword ipaadmin_password: SomeADMINpassword
name: "basic manager attributes" name: "basic manager attributes"
permission: read permission: read