netbird/release_files/darwin_pkg/preinstall

18 lines
276 B
Plaintext
Raw Normal View History

2023-05-23 18:15:05 +02:00
#!/bin/sh
set -x
LOG_FILE=/var/log/netbird/client_pre_install.log
AGENT=/usr/local/bin/netbird
2023-05-25 12:22:13 +02:00
mkdir -p /var/log/netbird/
2023-05-26 13:07:14 +02:00
{
osascript -e 'quit app "Netbird"' || true
$AGENT service stop || true
2023-05-26 13:07:14 +02:00
echo "Preinstall complete"
exit 0 # all good
} &> $LOG_FILE