Saltstack Official Linux Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {%- 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
|