mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
39 lines
903 B
Bash
39 lines
903 B
Bash
#!/bin/bash
|
|
|
|
current_uptime() {
|
|
awk '{print $1}' /proc/uptime | cut -d . -f 1
|
|
}
|
|
|
|
java_running() {
|
|
[[ $( ps -ax -o stat,comm | grep 'java' | awk '{ print $1 }') =~ ^S.*$ ]]
|
|
}
|
|
|
|
java_process_exists() {
|
|
[[ -n "$(ps -ax -o comm | grep 'java')" ]]
|
|
}
|
|
|
|
rcon_client_exists() {
|
|
[[ -n "$(ps -ax -o comm | grep 'rcon-cli')" ]]
|
|
}
|
|
|
|
mc_server_listening() {
|
|
mc-monitor status --host localhost --port "$SERVER_PORT" --timeout 10s >& /dev/null
|
|
}
|
|
|
|
java_clients_connections() {
|
|
local connections
|
|
if java_running ; then
|
|
if ! connections=$(mc-monitor status --host localhost --port "$SERVER_PORT" --show-player-count); then
|
|
# consider it a non-zero player count if the ping fails
|
|
# otherwise a laggy server with players connected could get paused
|
|
connections=1
|
|
fi
|
|
else
|
|
connections=0
|
|
fi
|
|
echo $connections
|
|
}
|
|
|
|
java_clients_connected() {
|
|
(( $(java_clients_connections) > 0 ))
|
|
} |