Merge pull request #349 from t-woerner/new_location_module

New location management module
This commit is contained in:
Rafael Guterres Jeffman
2020-08-14 08:11:50 -03:00
committed by GitHub
5 changed files with 391 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
---
- name: Location absent test
hosts: ipaserver
become: true
tasks:
- name: Ensure location my_location1 is absent
ipalocation:
name: my_location1
state: absent

View File

@@ -0,0 +1,9 @@
---
- name: Location present test
hosts: ipaserver
become: true
tasks:
- name: Ensure location my_location1 is present
ipalocation:
name: my_location1