diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-13 19:01:46 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-13 19:01:46 +0200 |
commit | 8ca3509fec6a34589337e05fc2fb7505bdef97ac (patch) | |
tree | f7b3c61cda6722cabfab491c03aed3ec3f8afd12 /src/leap/bitmask | |
parent | 9fd7129a2b616df701b13a6cf7df2f7d75011eff (diff) |
[feat] skip tun kext check for now
Diffstat (limited to 'src/leap/bitmask')
-rw-r--r-- | src/leap/bitmask/vpn/launchers/darwin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/bitmask/vpn/launchers/darwin.py b/src/leap/bitmask/vpn/launchers/darwin.py index 7da69ad..afe3358 100644 --- a/src/leap/bitmask/vpn/launchers/darwin.py +++ b/src/leap/bitmask/vpn/launchers/darwin.py @@ -126,8 +126,8 @@ class DarwinVPNLauncher(VPNLauncher): :return: A VPN command ready to be launched. :rtype: list """ - if not kls.is_kext_loaded(): - raise NoTunKextLoaded('tun kext is needed, but was not found') + # if not kls.is_kext_loaded(): + # raise NoTunKextLoaded('tun kext is needed, but was not found') # we use `super` in order to send the class to use command = super(DarwinVPNLauncher, kls).get_vpn_command( |