mirror of
https://github.com/ChocoTaco1/docker-tribesnext-server.git
synced 2026-01-19 16:14:45 +00:00
11 lines
198 B
Bash
11 lines
198 B
Bash
#!/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
|
|
) |