c6263dbfd4
Support for invoking Ansible EOS network modules for Arista switches. Change-Id: I3a570adf43e1addce5eeab88e29ae4ded44669f0
18 lines
374 B
Django/Jinja
18 lines
374 B
Django/Jinja
#jinja2: trim_blocks: True,lstrip_blocks: True
|
|
|
|
{% for line in arista_switch_config %}
|
|
{{ line }}
|
|
{% endfor %}
|
|
|
|
{% for interface, config in
|
|
arista_switch_interface_config.items() %}
|
|
interface {{ interface }}
|
|
{% if config.description is defined %}
|
|
description {{ config.description }}
|
|
{% endif %}
|
|
{% for line in config.config %}
|
|
{{ line }}
|
|
{% endfor %}
|
|
exit
|
|
{% endfor %}
|