mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-10 17:48:25 +08:00
13 lines
344 B
Bash
Executable file
13 lines
344 B
Bash
Executable file
#!/bin/sh
|
|
echo "[netclient] joining network"
|
|
|
|
/etc/netclient/netclient join -t $NETCLIENT_ACCESSTOKEN -daemon off -dnson no
|
|
|
|
echo "[netclient] Starting netclient checkin"
|
|
# loop and call checkin -n all
|
|
while [ 1 ]; do
|
|
# add logs to netclient.logs
|
|
/etc/netclient/netclient checkin -n all
|
|
sleep $SLEEP
|
|
done
|
|
echo "[netclient] exiting"
|