mirror of
https://github.com/saltstack-formulas/nfs-formula.git
synced 2025-04-10 14:51:47 +00:00
12 lines
282 B
Text
12 lines
282 B
Text
{% from "nfs/map.jinja" import nfs with context %}
|
|
|
|
include:
|
|
- nfs.client
|
|
|
|
|
|
{% for m in salt['pillar.get']('nfs:unmount', {}).items() %}
|
|
{{ m[1].mountpoint }}:
|
|
mount.unmounted:
|
|
- device: {{ m[1].location }}
|
|
- {{ m[1].persist|default(nfs.persist_unmount) }}
|
|
{% endfor %}
|