mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-22 05:49:12 +01:00
11 lines
155 B
Bash
Executable File
11 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOG_FILE=/var/log/netbird/client_install.log
|
|
|
|
mkdir -p /var/log/netbird/
|
|
|
|
{
|
|
echo "Preinstall complete"
|
|
exit 0 # all good
|
|
} &> $LOG_FILE
|