Commit cd5a431d authored by Tom Niget's avatar Tom Niget

Fix ovpn 2.6

parent 0b012c01
...@@ -22,7 +22,7 @@ def openvpn(iface, encrypt, *args, **kw): ...@@ -22,7 +22,7 @@ def openvpn(iface, encrypt, *args, **kw):
if ovpn_log: if ovpn_log:
args += '--log-append', os.path.join(ovpn_log, '%s.log' % iface), args += '--log-append', os.path.join(ovpn_log, '%s.log' % iface),
if not encrypt: if not encrypt:
args += '--cipher', 'none', '--ncp-disable' args += '--cipher', 'none'
logging.debug('%r', args) logging.debug('%r', args)
return utils.Popen(args, **kw) return utils.Popen(args, **kw)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment