From c035917e5318ac494c8b9e7d9fdf09ddcb424006 Mon Sep 17 00:00:00 2001 From: kali Date: Sat, 5 Aug 2017 15:36:21 -0700 Subject: [pkg] improve logging for the osx install scripts --- pkg/osx/scripts/preinstall | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'pkg/osx/scripts/preinstall') diff --git a/pkg/osx/scripts/preinstall b/pkg/osx/scripts/preinstall index 222922cf..1ae68f9c 100755 --- a/pkg/osx/scripts/preinstall +++ b/pkg/osx/scripts/preinstall @@ -1,5 +1,12 @@ #!/bin/sh # Bitmask Pre-Instalation script -[[ -f /Library/LaunchDaemons/se.leap.bitmask-helper.plist ]] && launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist -echo `date` "::Bitmask pre-installation script succeeded." >> /tmp/bitmask-install.log +# (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 -- cgit v1.2.3