Saltstack Official Linux Formula
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- {%- 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 %}
|