mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 06:14:14 +00:00
15 lines
No EOL
363 B
Bash
Executable file
15 lines
No EOL
363 B
Bash
Executable file
#!/bin/bash
|
|
|
|
: "${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
|
|
|
|
gosu minecraft bash -c "echo $* > '${CONSOLE_IN_NAMED_PIPE:-/tmp/minecraft-console-in}'" |