mirror of
https://github.com/netbirdio/netbird.git
synced 2025-04-17 07:58:29 +02:00
12 lines
184 B
Bash
Executable File
12 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOG_FILE=/var/log/netbird/client_install.log
|
|
|
|
mkdir -p /var/log/netbird/
|
|
|
|
{
|
|
pkill -f netbird || true
|
|
echo "Preinstall complete"
|
|
exit 0 # all good
|
|
} &> $LOG_FILE
|