summaryrefslogtreecommitdiff
path: root/data/templates/vrrp
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-09-21 20:05:52 +0200
committerChristian Poessinger <christian@poessinger.com>2021-09-21 22:16:11 +0200
commit9788c48435bb8ce74883138d305743a6a565910a (patch)
tree1fb2b778d6a16bce0bcfc7a9d506771794190005 /data/templates/vrrp
parent10a71d6d0534810c314010adc22ae7265334647c (diff)
downloadvyos-1x-9788c48435bb8ce74883138d305743a6a565910a.tar.gz
vyos-1x-9788c48435bb8ce74883138d305743a6a565910a.zip
vrrp: keepalived: T2720: adjust to Jinja2 trim_blocks feature
This is a successor to commit a2ac9fac16e ("vyos.template: T2720: always enable Jinja2 trim_blocks feature"). It only shifts the whitespaces / indents inside the keepalived configuration file. (cherry picked from commit c1ac0630cfe0ee65569fbe435cc006ade20fed22)
Diffstat (limited to 'data/templates/vrrp')
-rw-r--r--data/templates/vrrp/keepalived.conf.tmpl103
1 files changed, 46 insertions, 57 deletions
diff --git a/data/templates/vrrp/keepalived.conf.tmpl b/data/templates/vrrp/keepalived.conf.tmpl
index d51522e45..13619ca69 100644
--- a/data/templates/vrrp/keepalived.conf.tmpl
+++ b/data/templates/vrrp/keepalived.conf.tmpl
@@ -10,8 +10,7 @@ global_defs {
}
{% for group in groups %}
-
-{% if group.health_check_script %}
+{% if group.health_check_script is defined and group.health_check_script is not none %}
vrrp_script healthcheck_{{ group.name }} {
script "{{ group.health_check_script }}"
interval {{ group.health_check_interval }}
@@ -19,87 +18,77 @@ vrrp_script healthcheck_{{ group.name }} {
rise 1
}
-{% endif %}
+{% endif %}
vrrp_instance {{ group.name }} {
- {% if group.description %}
- # {{ group.description }}
- {% endif %}
-
+ {{ '# ' ~ group.description if group.description is defined }}
state BACKUP
interface {{ group.interface }}
virtual_router_id {{ group.vrid }}
priority {{ group.priority }}
advert_int {{ group.advertise_interval }}
-
- {% if group.preempt %}
+{% if group.preempt is defined and group.preempt is not none %}
preempt_delay {{ group.preempt_delay }}
- {% else %}
+{% else %}
nopreempt
- {% endif %}
-
- {% if group.peer_address %}
+{% endif %}
+{% if group.peer_address is defined and group.peer_address is not none %}
unicast_peer { {{ group.peer_address }} }
- {% endif %}
-
- {% if group.hello_source %}
- {% if group.peer_address %}
- unicast_src_ip {{ group.hello_source }}
- {% else %}
- mcast_src_ip {{ group.hello_source }}
- {% endif %}
- {% endif %}
-
- {% if group.use_vmac and group.peer_address %}
- use_vmac {{group.interface}}v{{group.vrid}}
- vmac_xmit_base
- {% elif group.use_vmac %}
- use_vmac {{group.interface}}v{{group.vrid}}
- {% endif %}
-
- {% if group.auth_password %}
- authentication {
+{% endif %}
+{% if group.hello_source is defined and group.hello_source is not none %}
+{% if group.peer_address is defined and group.peer_address is not none %}
+ unicast_src_ip {{ group.hello_source }}
+{% else %}
+ mcast_src_ip {{ group.hello_source }}
+{% endif %}
+{% endif %}
+{% if group.use_vmac is defined and group.peer_address is defined %}
+ use_vmac {{ group.interface }}v{{ group.vrid }}
+ vmac_xmit_base
+{% elif group.use_vmac is defined %}
+ use_vmac {{ group.interface }}v{{ group.vrid }}
+{% endif %}
+{% if group.auth_password is defined and group.auth_password is not none %}
+ authentication {
auth_pass "{{ group.auth_password }}"
auth_type {{ group.auth_type }}
- }
- {% endif %}
-
+ }
+{% endif %}
+{% if group.virtual_addresses is defined and group.virtual_addresses is not none %}
virtual_ipaddress {
- {% for addr in group.virtual_addresses %}
+{% for addr in group.virtual_addresses %}
{{ addr }}
- {% endfor %}
+{% endfor %}
}
-
- {% if group.virtual_addresses_excluded %}
+{% endif %}
+{% if group.virtual_addresses_excluded is defined and group.virtual_addresses_excluded is not none %}
virtual_ipaddress_excluded {
- {% for addr in group.virtual_addresses_excluded %}
+{% for addr in group.virtual_addresses_excluded %}
{{ addr }}
- {% endfor %}
+{% endfor %}
}
- {% endif %}
-
- {% if group.health_check_script %}
+{% endif %}
+{% if group.health_check_script is defined and group.health_check_script is not none %}
track_script {
healthcheck_{{ group.name }}
}
- {% endif %}
+{% endif %}
}
-
{% endfor %}
-{% for sync_group in sync_groups %}
+{% if sync_groups is defined and sync_groups is not none %}
+{% for sync_group in sync_groups %}
vrrp_sync_group {{ sync_group.name }} {
- group {
- {% for member in sync_group.members %}
- {{ member }}
- {% endfor %}
- }
-
- {% if sync_group.conntrack_sync %}
+ group {
+{% for member in sync_group.members %}
+ {{ member }}
+{% endfor %}
+ }
+{% if sync_group.conntrack_sync %}
notify_master "/opt/vyatta/sbin/vyatta-vrrp-conntracksync.sh master {{ sync_group.name }}"
notify_backup "/opt/vyatta/sbin/vyatta-vrrp-conntracksync.sh backup {{ sync_group.name }}"
notify_fault "/opt/vyatta/sbin/vyatta-vrrp-conntracksync.sh fault {{ sync_group.name }}"
- {% endif %}
+{% endif %}
}
-
-{% endfor %}
+{% endfor %}
+{% endif %}