diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-10-14 18:12:45 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-10-14 18:12:45 +0200 |
commit | 95d95c52cb447b3ddb1bce6737583e4fd1c945d0 (patch) | |
tree | 9c3433d6768becb3671b4df47dad2b902de7cfd0 /src/conf_mode | |
parent | 77e277208e67dc1370ddffda90e1e18bc50220d3 (diff) | |
download | vyos-1x-95d95c52cb447b3ddb1bce6737583e4fd1c945d0.tar.gz vyos-1x-95d95c52cb447b3ddb1bce6737583e4fd1c945d0.zip |
T896: Fix dynamic DNS for CUSTOM provider
JINJA2 templated missed the 'server=' statement when generating custom dynamic
DNS entries in the resulting ddclient.conf.
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-x | src/conf_mode/dynamic_dns.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/conf_mode/dynamic_dns.py b/src/conf_mode/dynamic_dns.py index 90d4ff567..60efcaae2 100755 --- a/src/conf_mode/dynamic_dns.py +++ b/src/conf_mode/dynamic_dns.py @@ -63,6 +63,7 @@ protocol={{ srv.protocol }} max-interval=28d login={{ srv.login }} password='{{ srv.password }}' +server={{ srv.server }} {{ host }} {% endfor %} {% endfor %} |