mirror of
https://github.com/ChocoTaco1/docker-tribesnext-server.git
synced 2026-01-20 00:24:49 +00:00
11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# -- Heartbeat to TribesNext's Master Server
|
||
|
|
|
||
|
|
(
|
||
|
|
while true; do
|
||
|
|
echo "Sending heartbeat to TribesNext..."
|
||
|
|
curl http://master.tribesnext.com/add/28000 &
|
||
|
|
sleep 240 ;
|
||
|
|
done
|
||
|
|
)
|