summaryrefslogtreecommitdiff
path: root/data/templates/frr/static.frr.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-09-27 20:43:02 +0200
committerChristian Poessinger <christian@poessinger.com>2021-09-27 20:43:20 +0200
commitf4732f348ff4b0a9d82ec698f4a8b3c6107f9101 (patch)
tree2b23bfef00b4bf1d6f1490538ea12158d43e21b0 /data/templates/frr/static.frr.tmpl
parent0f25b50ea8c0bf4b92a93db9392066d99d354449 (diff)
downloadvyos-1x-f4732f348ff4b0a9d82ec698f4a8b3c6107f9101.tar.gz
vyos-1x-f4732f348ff4b0a9d82ec698f4a8b3c6107f9101.zip
frr: T2175: rename daemon Jinja2 templates to match (d)aemon suffix
Diffstat (limited to 'data/templates/frr/static.frr.tmpl')
-rw-r--r--data/templates/frr/static.frr.tmpl49
1 files changed, 0 insertions, 49 deletions
diff --git a/data/templates/frr/static.frr.tmpl b/data/templates/frr/static.frr.tmpl
deleted file mode 100644
index db59a44c2..000000000
--- a/data/templates/frr/static.frr.tmpl
+++ /dev/null
@@ -1,49 +0,0 @@
-{% from 'frr/static_routes_macro.j2' import static_routes %}
-!
-{% set ip_prefix = 'ip' %}
-{% set ipv6_prefix = 'ipv6' %}
-{% if vrf is defined and vrf is not none %}
-{# We need to add an additional whitespace in front of the prefix #}
-{# when VRFs are in use, thus we use a variable for prefix handling #}
-{% set ip_prefix = ' ip' %}
-{% set ipv6_prefix = ' ipv6' %}
-vrf {{ vrf }}
-{% endif %}
-{# IPv4 routing #}
-{% if route is defined and route is not none %}
-{% for prefix, prefix_config in route.items() %}
-{{ static_routes(ip_prefix, prefix, prefix_config) }}
-{%- endfor -%}
-{% endif %}
-{# IPv6 routing #}
-{% if route6 is defined and route6 is not none %}
-{% for prefix, prefix_config in route6.items() %}
-{{ static_routes(ipv6_prefix, prefix, prefix_config) }}
-{%- endfor -%}
-{% endif %}
-{% if vrf is defined and vrf is not none %}
- exit-vrf
-{% endif %}
-!
-{# Policy route tables #}
-{% if table is defined and table is not none %}
-{% for table_id, table_config in table.items() %}
-{% if table_config.route is defined and table_config.route is not none %}
-{% for prefix, prefix_config in table_config.route.items() %}
-{{ static_routes('ip', prefix, prefix_config, table_id) }}
-{%- endfor -%}
-{% endif %}
-!
-{% if table_config.route6 is defined and table_config.route6 is not none %}
-{% for prefix, prefix_config in table_config.route6.items() %}
-{{ static_routes('ipv6', prefix, prefix_config, table_id) }}
-{%- endfor -%}
-{% endif %}
-!
-{% endfor %}
-{% endif %}
-!
-{% if route_map is defined and route_map is not none %}
-ip protocol static route-map {{ route_map }}
-!
-{% endif %}