Merge pull request #505 from rjeffman/fix_ipaselfservice_example_playbooks

example playbooks: ipaselfservice examples mentioned ipadelegation.
This commit is contained in:
Varun Mylaraiah
2021-02-04 17:06:23 +05:30
committed by GitHub
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