Remove unnecessary comma from JunOS switch config
This was being appended to port descriptions.
This commit is contained in:
parent
9b694aadff
commit
8182d7f1fe
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
{% for interface, config in junos_switch_interface_config.items() %}
|
{% for interface, config in junos_switch_interface_config.items() %}
|
||||||
{% if config.description is defined %}
|
{% if config.description is defined %}
|
||||||
set interfaces {{ interface }} description "{{ config.description }}";
|
set interfaces {{ interface }} description "{{ config.description }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for line in config.config %}
|
{% for line in config.config %}
|
||||||
{% if line.startswith('set') %}
|
{% if line.startswith('set') %}
|
||||||
|
Loading…
Reference in New Issue
Block a user