diff options
| author | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2026-03-16 21:43:35 +0700 |
|---|---|---|
| committer | Alex Kudentsov <43482574+alexk37@users.noreply.github.com> | 2026-03-16 22:47:14 +0700 |
| commit | 3112d1cb99582db99ed460bcb835fc12feede7dd (patch) | |
| tree | 986ac4f4d457971d1ac3506f6579ab07e1e48a19 | |
| parent | a460235665034eb645a41b786d14aa14f8405aca (diff) | |
| download | vyos-1x-3112d1cb99582db99ed460bcb835fc12feede7dd.tar.gz vyos-1x-3112d1cb99582db99ed460bcb835fc12feede7dd.zip | |
T8389: fix md5 password in isisd/fabricd templates
| -rw-r--r-- | data/templates/frr/fabricd.frr.j2 | 2 | ||||
| -rw-r--r-- | data/templates/frr/isisd.frr.j2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/frr/fabricd.frr.j2 b/data/templates/frr/fabricd.frr.j2 index 3a0646eb8..27110f6ae 100644 --- a/data/templates/frr/fabricd.frr.j2 +++ b/data/templates/frr/fabricd.frr.j2 @@ -39,7 +39,7 @@ exit router openfabric {{ name }} net {{ net }} {% if router_config.domain_password.md5 is vyos_defined %} - domain-password md5 {{ router_config.domain_password.plaintext_password }} + domain-password md5 {{ router_config.domain_password.md5 }} {% elif router_config.domain_password.plaintext_password is vyos_defined %} domain-password clear {{ router_config.domain_password.plaintext_password }} {% endif %} diff --git a/data/templates/frr/isisd.frr.j2 b/data/templates/frr/isisd.frr.j2 index 8128c6711..75b98c091 100644 --- a/data/templates/frr/isisd.frr.j2 +++ b/data/templates/frr/isisd.frr.j2 @@ -107,7 +107,7 @@ advertise-passive-only metric-style {{ metric_style }} {% endif %} {% if domain_password.md5 is vyos_defined %} - domain-password md5 {{ domain_password.plaintext_password }} + domain-password md5 {{ domain_password.md5 }} {% elif domain_password.plaintext_password is vyos_defined %} domain-password clear {{ domain_password.plaintext_password }} {% endif %} |
