Saltstack Official Linux Formula
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- {%- from "linux/map.jinja" import network with context %}
- include:
- {%- if network.hostname is defined %}
- - linux.network.hostname
- {%- endif %}
- {%- if network.host|length > 0 or network.get('purge_hosts', True) %}
- - linux.network.host
- {%- endif %}
- {%- if network.dpdk is defined %}
- - linux.network.dpdk
- {%- endif %}
- {%- if network.dhclient is defined %}
- - linux.network.dhclient
- {%- endif %}
- {%- if network.systemd|length > 0 %}
- - linux.network.systemd
- {%- endif %}
- {%- if network.openvswitch is defined %}
- - linux.network.openvswitch
- {%- endif %}
- {%- if network.interface|length > 0 %}
- - linux.network.interface
- {%- endif %}
- {%- if network.resolv is defined %}
- - linux.network.resolv
- {%- endif %}
- - linux.network.proxy
|