diff options
author | Kali Kaneko <kali@leap.se> | 2018-09-29 23:17:20 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-09-29 23:17:20 +0200 |
commit | 8f826342f88cd977738d6a2937031d1bdef682d4 (patch) | |
tree | 04b80e52b405c0ad1fdecfee8bf0a0b492353b8a /pkg/osx/scripts/preinstall | |
parent | cec99a26f50339a14d7c7314507632b7dcc4c32b (diff) |
[pkg] remove osx pkg folder
Diffstat (limited to 'pkg/osx/scripts/preinstall')
-rwxr-xr-x | pkg/osx/scripts/preinstall | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pkg/osx/scripts/preinstall b/pkg/osx/scripts/preinstall deleted file mode 100755 index 1ae68f9c..00000000 --- a/pkg/osx/scripts/preinstall +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# Bitmask Pre-Instalation script -# (c) LEAP Encryption access Project -# We unload the bitmask-helper if it is running, because we can be installing an upgrade. - -LOG=/tmp/bitmask-install.log - -ps aux | grep [b]itmask-helper \ - && launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist \ - && echo `date` ":: Bitmask pre-install: unloaded bitmask-helper." >> $LOG -echo `date` ":: Bitmask pre-install: ok." >> $LOG -exit 0 |