Saltstack Official Linux Formula
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- {%- 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
|