diff options
author | DmitriyEshenko <dmitriy.eshenko@vyos.io> | 2020-04-07 13:25:39 +0000 |
---|---|---|
committer | DmitriyEshenko <dmitriy.eshenko@vyos.io> | 2020-04-07 13:25:39 +0000 |
commit | 8cbbd2a9b32176172c05d22da5502b464b68e3a1 (patch) | |
tree | 401bada0ae7848f551c61d899d8ea9551ef939b6 /data/templates/pptp | |
parent | 8cc6bd529c76c2958999dcc379c418d748181731 (diff) | |
download | vyos-1x-8cbbd2a9b32176172c05d22da5502b464b68e3a1.tar.gz vyos-1x-8cbbd2a9b32176172c05d22da5502b464b68e3a1.zip |
l2tp: pptp: pppoe: T2237: Fix chap-secrets template format
Diffstat (limited to 'data/templates/pptp')
-rw-r--r-- | data/templates/pptp/chap-secrets.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/pptp/chap-secrets.tmpl b/data/templates/pptp/chap-secrets.tmpl index 6bfa2d64e..f93f4607b 100644 --- a/data/templates/pptp/chap-secrets.tmpl +++ b/data/templates/pptp/chap-secrets.tmpl @@ -1,6 +1,6 @@ # username server password acceptable local IP addresses {% for user in authentication['local-users'] %} {% if authentication['local-users'][user]['state'] == 'enabled' %} -{{user}}\t*\t{{authentication['local-users'][user]['passwd']}}\t{{authentication['local-users'][user]['ip']}} +{{ "%-12s" | format(user) }} * {{ "%-16s" | format(authentication['local-users'][user]['passwd']) }} {{ "%-16s" | format(authentication['local-users'][user]['ip']) }} {% endif %} {% endfor %} |