mirror of
https://github.com/netbirdio/netbird.git
synced 2025-06-11 04:16:49 +02:00
12 lines
201 B
Bash
Executable File
12 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOG_FILE=/var/log/netbird/client_install.log
|
|
|
|
mkdir -p /var/log/netbird/
|
|
|
|
{
|
|
osascript -e 'quit app "Netbird"' || true
|
|
echo "Preinstall complete"
|
|
exit 0 # all good
|
|
} &> $LOG_FILE
|