kayobe/ansible/roles/junos-switch/templates/junos-config-set.j2
Mark Goddard da82044a84 Updates to juniper switch configuration
Role renamed to junos-switch. Python dependencies are installed. Support for
multiple configuration types, including 'set', 'text', and 'json'.
2017-08-09 11:35:49 +00:00

21 lines
606 B
Django/Jinja

#jinja2: trim_blocks: True,lstrip_blocks: True
{% for line in junos_switch_config %}
{{ line }}
{% endfor %}
{% for interface, config in junos_switch_interface_config.items() %}
{% if config.description is defined %}
set interfaces {{ interface }} description "{{ config.description }}";
{% endif %}
{% for line in config.config %}
{% if line.startswith('set') %}
set interfaces {{ interface }} {{ line[4:] }}
{% elif line.startswith('delete') %}
delete interfaces {{ interface }} {{ line[7:] }}
{% else %}
{{ interface_config_lines_must_start_with_set_or_delete }}
{% endif %}
{% endfor %}
{% endfor %}