diff options
| -rw-r--r-- | src/leap/bitmask/services/eip/vpnlauncher.py | 33 | 
1 files changed, 0 insertions, 33 deletions
| diff --git a/src/leap/bitmask/services/eip/vpnlauncher.py b/src/leap/bitmask/services/eip/vpnlauncher.py index dc72f276..1498632a 100644 --- a/src/leap/bitmask/services/eip/vpnlauncher.py +++ b/src/leap/bitmask/services/eip/vpnlauncher.py @@ -198,11 +198,6 @@ class VPNLauncher(object):          args += [              '--client',              '--dev', 'tun', -            ############################################################## -            # persist-tun makes ping-restart fail because it leaves a -            # broken routing table -            ############################################################## -            # '--persist-tun',              '--persist-key',              '--tls-client',              '--remote-cert-tls', @@ -215,15 +210,6 @@ class VPNLauncher(object):          user = getpass.getuser() -        ############################################################## -        # The down-root plugin fails in some situations, so we don't -        # drop privs for the time being -        ############################################################## -        # args += [ -        #     '--user', user, -        #     '--group', grp.getgrgid(os.getgroups()[-1]).gr_name -        # ] -          if socket_port == "unix":  # that's always the case for linux              args += [                  '--management-client-user', user @@ -248,25 +234,6 @@ class VPNLauncher(object):                  ]          args += [ -            '--up-restart', -            '--persist-tun' -        ] - -        ########################################################### -        # For the time being we are disabling the usage of the -        # down-root plugin, because it doesn't quite work as -        # expected (i.e. it doesn't run route -del as root -        # when finishing, so it fails to properly -        # restart/quit) -        ########################################################### -        # if _has_updown_scripts(kls.OPENVPN_DOWN_PLUGIN): -        #     args += [ -        #         '--plugin', kls.OPENVPN_DOWN_ROOT, -        #         '\'%s\'' % kls.DOWN_SCRIPT  # for OSX -        #         '\'script_type=down %s\'' % kls.DOWN_SCRIPT  # for Linux -        #     ] - -        args += [              '--cert', eipconfig.get_client_cert_path(providerconfig),              '--key', eipconfig.get_client_cert_path(providerconfig),              '--ca', providerconfig.get_ca_cert_path() | 
