Remove unnecessary comma from JunOS switch config

This was being appended to port descriptions.
This commit is contained in:
Mark Goddard 2017-08-10 16:38:58 +00:00
parent 9b694aadff
commit 8182d7f1fe
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
{% for interface, config in junos_switch_interface_config.items() %}
{% if config.description is defined %}
set interfaces {{ interface }} description "{{ config.description }}";
set interfaces {{ interface }} description "{{ config.description }}"
{% endif %}
{% for line in config.config %}
{% if line.startswith('set') %}