netmaker/netclient-install.sh

10 lines
197 B
Bash
Raw Normal View History

2021-03-30 06:12:30 +08:00
#!/bin/sh
set -e
2021-03-30 19:57:51 +08:00
[ -z "$KEY" ] && KEY=nokey;
2021-03-30 06:12:30 +08:00
2021-04-16 19:26:11 +08:00
wget -O https://github.com/gravitl/netmaker/releases/download/latest/netclient
2021-03-30 06:12:30 +08:00
chmod +x netclient
2021-04-13 03:43:59 +08:00
sudo ./netclient -c install -t $KEY
2021-03-30 06:12:30 +08:00
rm -f netclient