diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 22:47:19 +0000 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-03-23 23:04:18 +0000 |
commit | 8f39784c847801c0b766a0c9289da0976ffd0604 (patch) | |
tree | f99c84bbf2a78aa3e9278f276a18336cad047520 /src/op_mode/reset_openvpn.py | |
parent | 71561a27a0338cba7c54ea8ae9bf14b75006ddbd (diff) | |
download | vyos-1x-8f39784c847801c0b766a0c9289da0976ffd0604.tar.gz vyos-1x-8f39784c847801c0b766a0c9289da0976ffd0604.zip |
ifconfig: T2154: fixing failure to start-stop-daemon
Diffstat (limited to 'src/op_mode/reset_openvpn.py')
-rwxr-xr-x | src/op_mode/reset_openvpn.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/op_mode/reset_openvpn.py b/src/op_mode/reset_openvpn.py index 38eca53cc..176cd51cf 100755 --- a/src/op_mode/reset_openvpn.py +++ b/src/op_mode/reset_openvpn.py @@ -48,7 +48,10 @@ if __name__ == '__main__': pid = int(f.read()) if pid_exists(pid): - cmd = 'start-stop-daemon --stop --quiet' + cmd = 'start-stop-daemon' + cmd += ' --stop' + cmd += ' --oknodo' + cmd += ' --quiet' cmd += ' --pidfile ' + pidfile subprocess_cmd(cmd) @@ -59,7 +62,10 @@ if __name__ == '__main__': sleep(0.250) # 250ms # re-start OpenVPN process - cmd = 'start-stop-daemon --start --quiet' + cmd = 'start-stop-daemon' + cmd += ' --start' + cmd += ' --oknodo' + cmd += ' --quiet' cmd += ' --pidfile ' + get_pid_file(interface) cmd += ' --exec /usr/sbin/openvpn' # now pass arguments to openvpn binary |