mirror of
https://github.com/saltstack-formulas/nfs-formula.git
synced 2025-04-10 14:51:47 +00:00
15 lines
342 B
Text
15 lines
342 B
Text
{% from "nfs/map.jinja" import nfs with context %}
|
|
|
|
nfs-service:
|
|
{% if nfs.enabled %}
|
|
service.running:
|
|
- enable: True
|
|
{% else %}
|
|
service.dead:
|
|
- enable: False
|
|
{% endif %}
|
|
{% if nfs.service_name is string %}
|
|
- name: {{ nfs.service_name }}
|
|
{% elif nfs.service_name is iterable %}
|
|
- names: {{ nfs.service_name }}
|
|
{% endif %}
|