mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 18:55:53 +00:00
148 lines
4.2 KiB
YAML
148 lines
4.2 KiB
YAML
---
|
|
- name: Test automountmap
|
|
hosts: ipaserver
|
|
become: no
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
# setup environment
|
|
- name: ensure test maps are absent
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name:
|
|
- TestMap01
|
|
- TestMap02
|
|
location: TestLocation
|
|
state: absent
|
|
|
|
- name: ensure location TestLocation is absent
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestLocation
|
|
state: absent
|
|
|
|
- name: ensure map TestMap is absent
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
state: absent
|
|
|
|
- name: ensure location TestLocation is present
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestLocation
|
|
state: present
|
|
|
|
# TESTS
|
|
- block:
|
|
- name: ensure map TestMap is present
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
desc: "this is a test map that should be deleted by the test"
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: ensure map TestMap is present again
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
register: result
|
|
failed_when: result.failed or result.changed
|
|
|
|
- name: ensure map TestMap has a different description
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
desc: "this is a changed description that should be deleted by the test"
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: ensure map TestMap has a different description, again
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
desc: "this is a changed description that should be deleted by the test"
|
|
register: result
|
|
failed_when: result.failed or result.changed
|
|
|
|
- name: ensure map TestMap is removed
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
state: absent
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: ensure map TestMap has been removed
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap
|
|
location: TestLocation
|
|
state: absent
|
|
register: result
|
|
failed_when: result.failed or result.changed
|
|
|
|
- name: ensure map TestMap01 is present
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap01
|
|
location: TestLocation
|
|
desc: "this is a changed description that should be deleted by the test"
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: ensure map TestMap02 is present
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestMap02
|
|
location: TestLocation
|
|
desc: "this is a changed description that should be deleted by the test"
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: ensure TestMap01 and TestMap02 are both absent
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name:
|
|
- TestMap01
|
|
- TestMap02
|
|
location: TestLocation
|
|
state: absent
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: ensure TestMap01 and TestMap02 are both absent again
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name:
|
|
- TestMap01
|
|
- TestMap02
|
|
location: TestLocation
|
|
state: absent
|
|
register: result
|
|
failed_when: result.failed or result.changed
|
|
|
|
# CLEAN UP
|
|
always:
|
|
- name: ensure test maps are absent
|
|
ipaautomountmap:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name:
|
|
- TestMap01
|
|
- TestMap02
|
|
location: TestLocation
|
|
state: absent
|
|
|
|
- name: ensure location TestLocation is absent
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestLocation
|
|
state: absent
|