summaryrefslogtreecommitdiff
path: root/branding/templates/osx/template-preinstall
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2020-10-13 19:40:09 +0200
committerkali kaneko (leap communications) <kali@leap.se>2020-10-23 23:21:57 +0200
commite9c95064992bffb331be71a89152bb3f4de763f5 (patch)
treebfb6c575f4aeb7ef8beb28bb36f2baef93bac4b8 /branding/templates/osx/template-preinstall
parent93a0668a02b3a280919c4881db9085d5f2a912af (diff)
[pkg] remove unused templates & scripts
Diffstat (limited to 'branding/templates/osx/template-preinstall')
-rw-r--r--branding/templates/osx/template-preinstall12
1 files changed, 0 insertions, 12 deletions
diff --git a/branding/templates/osx/template-preinstall b/branding/templates/osx/template-preinstall
deleted file mode 100644
index 90fe7fe..0000000
--- a/branding/templates/osx/template-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/$applicationName-install.log
-
-ps aux | grep [b]itmask-helper \
- && launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist \
- && echo `date` ":: $applicationName pre-install: unloaded bitmask-helper." >> $$LOG
-echo `date` ":: $applicationName pre-install: ok." >> $$LOG
-exit 0