mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-19 08:46:38 +00:00
13 lines
293 B
Bash
13 lines
293 B
Bash
#!/usr/bin/env sh
|
|
|
|
# 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"
|