diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-05 16:56:41 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-06 20:22:35 +0100 |
commit | c51b8f3e2fe1a8425fba2d3eb9c07049ef9b22bb (patch) | |
tree | 48514654e5b44b50002dbc4a0e0b70ce4e00cdd7 /src/conf_mode/vpn-pptp.py | |
parent | 4b30d3d6545b108c0b043baae2d57a465a8c8999 (diff) | |
download | vyos-1x-c51b8f3e2fe1a8425fba2d3eb9c07049ef9b22bb.tar.gz vyos-1x-c51b8f3e2fe1a8425fba2d3eb9c07049ef9b22bb.zip |
util: T2226: rewrite conf accel-ppp commands to use cmd
Diffstat (limited to 'src/conf_mode/vpn-pptp.py')
-rwxr-xr-x | src/conf_mode/vpn-pptp.py | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/conf_mode/vpn-pptp.py b/src/conf_mode/vpn-pptp.py index b1204a505..45b2c4b40 100755 --- a/src/conf_mode/vpn-pptp.py +++ b/src/conf_mode/vpn-pptp.py @@ -16,7 +16,6 @@ import os import re -import subprocess from jinja2 import FileSystemLoader, Environment from socket import socket, AF_INET, SOCK_STREAM @@ -26,6 +25,7 @@ from time import sleep from vyos.config import Config from vyos.defaults import directories as vyos_data_dir from vyos import ConfigError +from vyos.util import run pidfile = r'/var/run/accel_pptp.pid' pptp_cnf_dir = r'/etc/accel-ppp/pptp' @@ -50,17 +50,9 @@ def _chk_con(): raise("failed to start pptp server") break -# chap_secrets file if auth mode local -def _accel_cmd(cmd=''): - if not cmd: - return None - try: - ret = subprocess.check_output( - ['/usr/bin/accel-cmd', '-p', '2003', cmd]).decode().strip() - return ret - except: - return 1 +def _accel_cmd(command): + return run('/usr/bin/accel-cmd -p 2003 {command}') ### # inline helper functions end @@ -256,8 +248,7 @@ def apply(c): return None if not os.path.exists(pidfile): - ret = subprocess.call( - ['/usr/sbin/accel-pppd', '-c', pptp_conf, '-p', pidfile, '-d']) + ret = run(f'/usr/sbin/accel-pppd -c {pptp_conf} -p {pidfile} -d') _chk_con() if ret != 0 and os.path.exists(pidfile): os.remove(pidfile) |