mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
5e3eceb0d6
Updated windows installer package generation with launch UI after install remove older version remove wiretrustee added install and uninstall scripts Updated brew cask: run installer script to start daemon Daemon conflicts with wiretrustee on brew Removed migrate check on non-root commands like status CLI CMD is now going to stdout
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"
|