diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-18 12:38:47 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-18 14:31:51 +0200 |
commit | 267b3213ef0e6ac4501470bef797796276879421 (patch) | |
tree | 7d2ede2263d72ea3c3ac03f735ba8932da8181b7 /src/conf_mode/vpn_l2tp.py | |
parent | 901d5e89ec6e3fb0f3d13f90f0495a4dda592454 (diff) | |
download | vyos-1x-267b3213ef0e6ac4501470bef797796276879421.tar.gz vyos-1x-267b3213ef0e6ac4501470bef797796276879421.zip |
accel-ppp: T2314: use common tempplate for chap-secrets
Diffstat (limited to 'src/conf_mode/vpn_l2tp.py')
-rwxr-xr-x | src/conf_mode/vpn_l2tp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/vpn_l2tp.py b/src/conf_mode/vpn_l2tp.py index 331f22465..417520e09 100755 --- a/src/conf_mode/vpn_l2tp.py +++ b/src/conf_mode/vpn_l2tp.py @@ -348,10 +348,10 @@ def generate(l2tp): if not os.path.exists(dirname): os.mkdir(dirname) - render(l2tp_conf, 'l2tp/l2tp.config.tmpl', c, trim_blocks=True) + render(l2tp_conf, 'accel-ppp/l2tp.config.tmpl', c, trim_blocks=True) if l2tp['auth_mode'] == 'local': - render(l2tp_chap_secrets, 'l2tp/chap-secrets.tmpl', l2tp) + render(l2tp_chap_secrets, 'accel-ppp/chap-secrets.tmpl', l2tp) os.chmod(l2tp_chap_secrets, S_IRUSR | S_IWUSR | S_IRGRP) else: |