summaryrefslogtreecommitdiff
path: root/pkg/osx/scripts-riseupvpn/preinstall
blob: 1ae68f9c3ebbf48fc06fce048648a8428f45d33b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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