mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
8afb1651fd
For #426
19 lines
364 B
Bash
Executable File
19 lines
364 B
Bash
Executable File
#!/bin/bash
|
|
|
|
##### mcstatus shim for mc-monitor
|
|
|
|
addr="$1"
|
|
cmd="$2"
|
|
|
|
if [[ ${cmd} == "ping" ]]; then
|
|
IFS=':'
|
|
read -a parts <<< "${addr}"
|
|
if [[ ${#parts[*]} -gt 1 ]]; then
|
|
echo mc-monitor status --host ${parts[0]} --port ${parts[1]}
|
|
else
|
|
echo mc-monitor status --host ${parts[0]}
|
|
fi
|
|
else
|
|
echo "ERROR can only shim the 'ping' command"
|
|
exit 1
|
|
fi |