diff options
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/tools/osx/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/tools/osx/Makefile b/pkg/tools/osx/Makefile new file mode 100644 index 00000000..307dc8bf --- /dev/null +++ b/pkg/tools/osx/Makefile @@ -0,0 +1,10 @@ +# this mimicks what is done by the installer +install_helper: + sudo mkdir -p /Applications/RiseupVPN.app/Contents/Resources/bitmask-helper/ + sudo cp ../../osx/daemon/* /Applications/RiseupVPN.app/Contents/Resources/bitmask-helper/ + sudo cp ../../../src/leap/bitmask/vpn/helpers/osx/* /Applications/RiseupVPN.app/Contents/Resources/bitmask-helper/ + sudo cp ../../osx/scripts-riseupvpn/se.leap.bitmask-helper.plist /Library/LaunchDaemons/se.leap.bitmask-helper.plist +unload_helper: + sudo launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist +load_helper: + sudo launchctl load /Library/LaunchDaemons/se.leap.bitmask-helper.plist |