Added shim for mcstatus

For #426
This commit is contained in:
Geoff Bourne
2020-01-27 07:16:22 -06:00
parent 9560903c80
commit 8afb1651fd
2 changed files with 20 additions and 0 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/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