2f503c228e
This change makes it possible to deploy ACNG within a physical host NOT automatically tied to an MNAIO installation. This also adds an infra preseed file which can be used to provision physical hosts. By default the domain name is now passed into the server boot params which is useful when setting up an environment in support of RFC-1034/5. Ubuntu 16.04 has an issue with the options "quiet splash" being passed in which cause it to have no usable console. See [Related-Issue] for more. Related-Issue: #1656605 Change-Id: I731dfb70e4b5d676d8c22082da77c0d22d5afb58 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
32 lines
849 B
Django/Jinja
32 lines
849 B
Django/Jinja
# Physical interface, could be bond. This only needs to be set once
|
|
{% for key, value in mnaio_host_networks.items() %}
|
|
{% if value.iface_port != 'none' %}
|
|
auto {{ value.iface_port }}
|
|
iface {{ value.iface_port }} inet manual
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% for key, value in mnaio_host_networks.items() %}
|
|
auto {{ value.iface }}
|
|
iface {{ value.iface }} inet {{ value.inet_type }}
|
|
bridge_stp off
|
|
bridge_waitport {{ value.iface_port == 'none' | ternary('0', '10') }}
|
|
bridge_fd 0
|
|
bridge_ports {{ value.iface_port }}
|
|
offload-sg off
|
|
{% if value.address is defined %}
|
|
address {{ value.address }}
|
|
{% endif %}
|
|
|
|
{% if value.address_aliases is defined %}
|
|
{% for addr in value.address_aliases %}
|
|
auto {{ value.iface }}
|
|
iface {{ value.iface }} inet static
|
|
address {{ addr }}
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|