mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-23 02:36:42 +00:00
Add install and uninstall scripts
This commit is contained in:
20
release_files/darwin-ui-installer.sh
Normal file
20
release_files/darwin-ui-installer.sh
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# check if wiretrustee is installed
|
||||
WT_BIN=$(which wiretrustee)
|
||||
if [ -n "$WT_BIN" ]
|
||||
then
|
||||
wiretrustee service stop
|
||||
wiretrustee service start
|
||||
fi
|
||||
# check if netbird is installed
|
||||
NB_BIN=$(which netbird)
|
||||
if [ -z "$NB_BIN" ]
|
||||
then
|
||||
echo "netbird is not installed. Please run: brew install netbirdio/tap/netbird"
|
||||
exit 1
|
||||
fi
|
||||
# start netbird daemon service
|
||||
netbird service install
|
||||
netbird service start
|
||||
netbird version
|
||||
Reference in New Issue
Block a user