Merge pull request #496 from chr15p/ipaautomountlocation

add module to create and manage automount locations
This commit is contained in:
Thomas Woerner
2021-08-19 14:09:32 +02:00
committed by GitHub
5 changed files with 385 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---
- name: Automount locations absnet example
hosts: ipaserver
become: true
tasks:
- name: Ensure automount locations DMZ and internal are absent
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name:
- DMZ
- internal
state: absent

View File

@@ -0,0 +1,13 @@
---
- name: Automount location present example
hosts: ipaserver
become: true
tasks:
- name: Ensure automount locations DMZ and internal are present
ipaautomountlocation:
ipaadmin_password: SomeADMINpassword
name:
- DMZ
- internal
state: present