mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
24 lines
645 B
Bash
Executable File
24 lines
645 B
Bash
Executable File
#!/bin/bash
|
|
. "/start-utils"
|
|
: "${CONSOLE_IN_NAMED_PIPE:=/tmp/minecraft-console-in}"
|
|
|
|
if [ $# = 0 ]; then
|
|
echo "ERROR: pass console commands as arguments"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -p "${CONSOLE_IN_NAMED_PIPE}" ]; then
|
|
echo "ERROR: named pipe ${CONSOLE_IN_NAMED_PIPE} is missing"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$(id -u)" = 0 ]; then
|
|
if [[ $(getDistro) == alpine ]]; then
|
|
exec su-exec minecraft bash -c "echo $* > '${CONSOLE_IN_NAMED_PIPE:-/tmp/minecraft-console-in}'"
|
|
else
|
|
exec gosu minecraft bash -c "echo $* > '${CONSOLE_IN_NAMED_PIPE:-/tmp/minecraft-console-in}'"
|
|
fi
|
|
else
|
|
echo "$@" >"${CONSOLE_IN_NAMED_PIPE:-/tmp/minecraft-console-in}"
|
|
fi
|