Files
pvc-ansible/roles/base/templates/etc/network/interfaces-perif.j2

14 lines
545 B
Plaintext
Raw Normal View History

# PVC node interface-specific interface file - {{ network.key }}
# {{ ansible_managed }}
auto {{ network.value['device'] }}
2023-08-27 01:21:03 -04:00
iface {{ network.value['device'] }} inet {{ network.value['mode']|default('manual') }}
post-up ip link set $IFACE mtu {{ network.value['mtu'] }}
{% if network.value['type'] == 'bond' %}
2021-10-10 02:31:47 -04:00
bond-mode {{ network.value['bond_mode'] }}
bond-slaves {{ network.value['bond_devices'] | join(' ') }}
{% endif %}
{% if network.value['type'] == 'vlan' %}
vlan_raw_device {{ network.value['raw_device'] }}
{% endif %}