mirror of
https://github.com/saltstack-formulas/nfs-formula.git
synced 2025-04-16 09:40:27 +00:00
11 lines
263 B
Text
11 lines
263 B
Text
{% from "nfs/map.jinja" import nfs with context %}
|
|
|
|
nfs-service:
|
|
service.running:
|
|
{% if nfs.service_name is string %}
|
|
- name: {{ nfs.service_name }}
|
|
{% elif nfs.service_name is iterable %}
|
|
- names: {{ nfs.service_name }}
|
|
{% endif %}
|
|
- enable: True
|
|
|