From 739facb24e1fe8bbcdaca219c9d831c90c999f54 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 8 Jun 2017 15:36:37 -0700 Subject: [bug] make openvpn and firewall able to launch with these fixes, I'm able to finally launch openvpn and firewall on osx. :) all that's left for a minimum vpn release is packaging and installing all the helpers in the proper place. --- src/leap/bitmask/vpn/helpers/__init__.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/leap') diff --git a/src/leap/bitmask/vpn/helpers/__init__.py b/src/leap/bitmask/vpn/helpers/__init__.py index f57bd7fd..719fc5e9 100644 --- a/src/leap/bitmask/vpn/helpers/__init__.py +++ b/src/leap/bitmask/vpn/helpers/__init__.py @@ -3,7 +3,7 @@ from shutil import copyfile import os.path import sys -from leap.bitmask.vpn.constants import IS_LINUX +from leap.bitmask.vpn.constants import IS_LINUX, IS_MAC from leap.bitmask.vpn import _config from leap.bitmask.util import STANDALONE @@ -37,6 +37,12 @@ if IS_LINUX: polkit = os.path.exists(polkit_to) return helper and polkit +if IS_MAC: + + def check(): + # XXX check if bitmask-helper is running + return True + def main(): if sys.argv[-1] == 'install': -- cgit v1.2.3