diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-12 20:01:31 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-12 20:03:05 +0200 |
commit | 1b612f2eab47125aa7648da9d79308c061fa0262 (patch) | |
tree | 7c0f393848499a239c648679a215b13a4259f49b /data | |
parent | 9baa4d5be9a627989227b20725a15532b86eb63f (diff) | |
download | vyos-1x-1b612f2eab47125aa7648da9d79308c061fa0262.tar.gz vyos-1x-1b612f2eab47125aa7648da9d79308c061fa0262.zip |
vpn: sstp: T2008: fix template variable for chap-secrets
Commit 13510cac5a4a ("vpn: sstp: T2008: migrate from SysVinit -> systemd")
added a variable name of the chap-secrets file - but it was the wrong one.
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/sstp/sstp.config.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/sstp/sstp.config.tmpl b/data/templates/sstp/sstp.config.tmpl index d38bb5062..acdb6c76b 100644 --- a/data/templates/sstp/sstp.config.tmpl +++ b/data/templates/sstp/sstp.config.tmpl @@ -53,7 +53,7 @@ dns{{ loop.index }}={{ dns }} {% if auth_mode == 'local' %} [chap-secrets] -chap-secrets={{ sstp_chap_secrets }} +chap-secrets={{ chap_secrets_file }} {% elif auth_mode == 'radius' %} [radius] verbose=1 |