summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-12-20 18:05:39 +0100
committerChristian Poessinger <christian@poessinger.com>2022-12-26 19:14:03 +0100
commit45f66196b724b7cc147c9622502837a99a57a19d (patch)
tree76a746bc993378801cc01accba7d74f7a6967578 /data
parent6a8306598218824ef48d302f6095ae8e854bdd95 (diff)
downloadvyos-1x-45f66196b724b7cc147c9622502837a99a57a19d.tar.gz
vyos-1x-45f66196b724b7cc147c9622502837a99a57a19d.zip
radvd: T4809: fix AdvRASrcAddress missing semicolon
Commit 13071a4a ("T4809: radvd: Allow the use of AdvRASrcAddress") added a new feature to set the RA source-address. Unfortunately it missed a semicolon. (cherry picked from commit 4e61fb1f0fd075c5b1a67165204e13f88a7d3015)
Diffstat (limited to 'data')
-rw-r--r--data/templates/router-advert/radvd.conf.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/router-advert/radvd.conf.tmpl b/data/templates/router-advert/radvd.conf.tmpl
index 17869e318..4be6797ee 100644
--- a/data/templates/router-advert/radvd.conf.tmpl
+++ b/data/templates/router-advert/radvd.conf.tmpl
@@ -46,7 +46,7 @@ interface {{ iface }} {
{% if iface_config.source_address is defined %}
AdvRASrcAddress {
{% for source_address in iface_config.source_address %}
- {{ source_address }}
+ {{ source_address }};
{% endfor %}
};
{% endif %}