mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
13 lines
285 B
Bash
13 lines
285 B
Bash
#!/bin/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"
|