summaryrefslogtreecommitdiff
path: root/pkg/osx/scripts/postinstall
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/osx/scripts/postinstall')
-rwxr-xr-xpkg/osx/scripts/postinstall12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkg/osx/scripts/postinstall b/pkg/osx/scripts/postinstall
deleted file mode 100755
index 393ab658..00000000
--- a/pkg/osx/scripts/postinstall
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-# Bitmask Post-Instalation script
-# (c) LEAP Encryption access Project
-# We copy the bitmask-helper plist to the LaunchDaemons folder, and load the bitmask-helper that runs as root.
-
-LOG=/tmp/bitmask-install.log
-
-cp se.leap.bitmask-helper.plist /Library/LaunchDaemons/ \
- && echo `date` ":: Bitmask post-install: copied bitmask-helper Plist." >> $LOG
-launchctl load /Library/LaunchDaemons/se.leap.bitmask-helper.plist && echo `date` ":: Bitmask post-install: loaded bitmask-helper." >> $LOG
-echo `date` ":: Bitmask post-install: ok." >> $LOG
-exit 0