Saltstack Official Linux Formula
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- {%- from "linux/map.jinja" import network with context %}
- {%- if network.enabled %}
-
- {%- for name, host in network.host.iteritems() %}
-
- {%- if host.names is defined %}
-
- linux_host_{{ name }}:
- host.present:
- - ip: {{ host.address }}
- - names: {{ host.names }}
-
- {%- endif %}
-
- {%- endfor %}
-
- {%- endif %}
|