mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
15 lines
319 B
Bash
15 lines
319 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export PATH=$PATH:/usr/local/bin
|
||
|
|
||
|
# check if netbird is installed
|
||
|
NB_BIN=$(which netbird)
|
||
|
if [ -z "$NB_BIN" ]
|
||
|
then
|
||
|
exit 0
|
||
|
fi
|
||
|
# start netbird daemon service
|
||
|
echo "netbird daemon service still running. You can uninstall it by running: "
|
||
|
echo "sudo netbird service stop"
|
||
|
echo "sudo netbird service uninstall"
|