Fix typos/thinkos
parent
41be232924
commit
9e8cd2d385
|
|
@ -79,13 +79,13 @@ chassis {
|
||||||
|
|
||||||
{% macro interfaceconfig(interface,rack = None) %}
|
{% macro interfaceconfig(interface,rack = None) %}
|
||||||
{{ interface.name }} {
|
{{ interface.name }} {
|
||||||
{% if interface.get('description') != '' %}
|
{% if interface.description != '' %}
|
||||||
description "{{ interface.description }}";
|
description "{{ interface.description }}";
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if interface.get('mtu') and not interface.get('lag') %}
|
{% if interface.mtu and not interface.lag %}
|
||||||
mtu {{ interface.mtu }};
|
mtu {{ interface.mtu }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if interface.get('lag') %}
|
{% if interface.lag %}
|
||||||
ether-options {
|
ether-options {
|
||||||
802.3ad {{ interface.lag.name }};
|
802.3ad {{ interface.lag.name }};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue