mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-08-01 04:14:42 +00:00
Merge pull request #496 from chr15p/ipaautomountlocation
add module to create and manage automount locations
This commit is contained in:
13
playbooks/automount/automount-location-absent.yml
Normal file
13
playbooks/automount/automount-location-absent.yml
Normal 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
|
||||
|
||||
13
playbooks/automount/automount-location-present.yml
Normal file
13
playbooks/automount/automount-location-present.yml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user