mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 01:54:34 +08:00
9 lines
207 B
Bash
Executable file
9 lines
207 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
[ -z "$KEY" ] && KEY=nokey;
|
|
|
|
wget -O netclient https://github.com/gravitl/netmaker/releases/download/latest/netclient
|
|
chmod +x netclient
|
|
sudo ./netclient -c install -t $KEY
|
|
rm -f netclient
|