summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-12 20:14:09 +0200
committerChristian Poessinger <christian@poessinger.com>2020-04-12 20:14:26 +0200
commit254faff9678eb03cd212f6e4b08f8502bd28b492 (patch)
tree3fc9efdbfc08080c21c0c4e5f8e0ffcdf2760444 /src/conf_mode
parent1b612f2eab47125aa7648da9d79308c061fa0262 (diff)
downloadvyos-1x-254faff9678eb03cd212f6e4b08f8502bd28b492.tar.gz
vyos-1x-254faff9678eb03cd212f6e4b08f8502bd28b492.zip
vpn: sstp: T2185: move generated files to volatile /run/accel-ppp directory
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/vpn_sstp.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/conf_mode/vpn_sstp.py b/src/conf_mode/vpn_sstp.py
index cedecfdec..645beddad 100755
--- a/src/conf_mode/vpn_sstp.py
+++ b/src/conf_mode/vpn_sstp.py
@@ -27,8 +27,8 @@ from vyos import ConfigError
from vyos.defaults import directories as vyos_data_dir
from vyos.util import call, run
-sstp_conf = '/etc/accel-ppp/sstp.conf'
-sstp_chap_secrets = '/etc/accel-ppp/sstp.chap-secrets'
+sstp_conf = '/run/accel-pppd/sstp.conf'
+sstp_chap_secrets = '/run/accel-pppd/sstp.chap-secrets'
default_config_data = {
'local_users' : [],
@@ -188,6 +188,8 @@ def get_config():
# authentication protocols
conf.set_level(base_path + ['authentication'])
if conf.exists(['protocols']):
+ # clear default list content, now populate with actual CLI values
+ sstp['auth_proto'] = []
auth_mods = {
'pap': 'auth_pap',
'chap': 'auth_chap_md5',
@@ -297,9 +299,12 @@ def verify(sstp):
raise ConfigError(f"Missing RADIUS secret for server {{ radius['key'] }}")
def generate(sstp):
- if sstp is None:
+ if not sstp:
return None
+ import pprint
+ pprint.pprint(sstp)
+
# Prepare Jinja2 template loader from files
tmpl_path = os.path.join(vyos_data_dir['data'], 'templates', 'sstp')
fs_loader = FileSystemLoader(tmpl_path)
@@ -330,7 +335,7 @@ def generate(sstp):
def apply(sstp):
if not sstp:
- call('systemctl stop accel-ppp-sstp.service')
+ call('systemctl stop accel-ppp@sstp.service')
if os.path.exists(sstp_conf):
os.unlink(sstp_conf)
@@ -340,7 +345,7 @@ def apply(sstp):
return None
- call('systemctl restart accel-ppp-sstp.service')
+ call('systemctl restart accel-ppp@sstp.service')
if __name__ == '__main__':