From a533ca621567150732b58fc5176cd18b608f1f92 Mon Sep 17 00:00:00 2001
From: Christian Poessinger <christian@poessinger.com>
Date: Fri, 10 Apr 2020 19:43:38 +0200
Subject: vpn: l2tp: T2264: combine WINS CLI syntax

There is no reason to distinguish between WINS servers in terms of priority.
This is solely a task which can be done in the underlaying Python scripts.
---
 data/templates/l2tp/l2tp.config.tmpl | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

(limited to 'data/templates')

diff --git a/data/templates/l2tp/l2tp.config.tmpl b/data/templates/l2tp/l2tp.config.tmpl
index bea2943d2..7e15233bb 100644
--- a/data/templates/l2tp/l2tp.config.tmpl
+++ b/data/templates/l2tp/l2tp.config.tmpl
@@ -39,13 +39,10 @@ dns{{ loop.index }}={{ dns }}
 
 {% if wins %}
 [wins]
-{% if wins[0] %}
-wins1={{wins[0]}}
-{% endif %}
-{% if wins[1] %}
-wins2={{wins[1]}}
+{% for server in wins -%}
+wins{{ loop.index }}={{ server }}
+{% endfor -%}
 {% endif %}
-{% endif -%}
 
 [l2tp]
 verbose=1
-- 
cgit v1.2.3