mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-01 20:23:23 +02:00
9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOG_FILE=/var/log/netbird/client_install.log
|
|
|
|
echo "Start installation..." &> $LOG_FILE
|
|
echo "Preinstall complete" &>> $LOG_FILE
|
|
exit 0 # all good
|
|
|