Skip to content
Snippets Groups Projects
Commit 04471430 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

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.
parent e2cb68de
No related branches found
No related tags found
No related merge requests found
--- ---
- 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
--- ---
- 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
--- ---
- 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:
......
--- ---
- 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment