netmaker/scripts/netclient-install.sh
2021-08-20 08:11:09 -04:00

14 lines
285 B
Bash
Executable file

#!/bin/sh
set -e
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
[ -z "$KEY" ] && KEY=nokey;
wget -O netclient https://github.com/gravitl/netmaker/releases/download/latest/netclient
chmod +x netclient
sudo ./netclient join -t $KEY
rm -f netclient