mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00: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
|
|
|