From c0b7e14cb2adf5e686a46d5d25c4aed63bac9f53 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Fri, 19 Jul 2019 00:41:54 +0200 Subject: [VRRP] T1362: quote VRRP password strings to avoid config parse errors. --- src/conf_mode/vrrp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf_mode/vrrp.py b/src/conf_mode/vrrp.py index 85c6ad580..a08493309 100755 --- a/src/conf_mode/vrrp.py +++ b/src/conf_mode/vrrp.py @@ -85,7 +85,7 @@ vrrp_instance {{ group.name }} { {% if group.auth_password -%} authentication { - auth_pass {{ group.auth_password }} + auth_pass "{{ group.auth_password }}" auth_type {{ group.auth_type }} } {% endif -%} -- cgit v1.2.3