mirror of
https://github.com/gravitl/netmaker.git
synced 2026-04-23 00:17:10 +08:00
10 lines
209 B
Bash
Executable File
10 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
[ -z "$KEY" ] && KEY=nokey;
|
|
|
|
wget -O --backups=1 https://github.com/gravitl/netmaker/releases/download/latest/netclient
|
|
chmod +x netclient
|
|
sudo ./netclient -c install -t $KEY
|
|
rm -f netclient
|