123456789101112131415161718192021222324252627 |
- auto lo
- iface lo inet loopback
- {%for interface in supernode_interfaces %}
- {% if interface.auto is defined and interface.auto %}
- auto {{interface.name}}
- {% endif %}
- {% if interface.hotplug is defined and interface.hotplug %}
- allow-hotplug {{interface.name}}
- {% endif %}
- iface {{interface.name}} {{interface.proto}} {{interface.type}}
- {% if interface.config is defined %}
- {% for config in interface.config %}
- {{config.key}} {{config.value}}
- {% endfor %}
- {% endif %}
- {% endfor %}
|