summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/leap/bitmask/vpn/helpers/osx/bitmask-helper4
-rw-r--r--src/leap/bitmask/vpn/launchers/darwin.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/vpn/helpers/osx/bitmask-helper b/src/leap/bitmask/vpn/helpers/osx/bitmask-helper
index 4a54295b..53b3ed2a 100755
--- a/src/leap/bitmask/vpn/helpers/osx/bitmask-helper
+++ b/src/leap/bitmask/vpn/helpers/osx/bitmask-helper
@@ -44,7 +44,7 @@ To see the loaded rules:
To test the commands, you can write directly to the unix socket. Remember to
terminate the command properly:
- echo 'firewall_stop/CMD' | socat - UNIX-CONNECT:/tmp/bitmask-helper.socket
+ echo 'firewall_stop/CMD' | socat - UNIX-CONNECT:/var/run/bitmask-helper.socket
"""
import os
@@ -122,7 +122,7 @@ GREP = '/usr/bin/grep'
CAT = '/bin/cat'
UID = os.getuid()
-SERVER_ADDRESS = '/tmp/bitmask-helper.socket'
+SERVER_ADDRESS = '/var/run/bitmask-helper.socket'
#
diff --git a/src/leap/bitmask/vpn/launchers/darwin.py b/src/leap/bitmask/vpn/launchers/darwin.py
index 7562af91..e454a2ff 100644
--- a/src/leap/bitmask/vpn/launchers/darwin.py
+++ b/src/leap/bitmask/vpn/launchers/darwin.py
@@ -33,7 +33,7 @@ logger = Logger()
class HelperCommand(object):
- SOCKET_ADDR = '/tmp/bitmask-helper.socket'
+ SOCKET_ADDR = '/var/run/bitmask-helper.socket'
def __init__(self):
pass