From 45f66196b724b7cc147c9622502837a99a57a19d Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Tue, 20 Dec 2022 18:05:39 +0100 Subject: 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) --- data/templates/router-advert/radvd.conf.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} -- cgit v1.2.3