mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
12 lines
238 B
Bash
Executable File
12 lines
238 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. /start-utils
|
|
if isTrue "${DEBUG_AUTOPAUSE}"; then
|
|
set -x
|
|
fi
|
|
|
|
if [[ $( ps -ax -o stat,comm | grep 'java' | awk '{ print $1 }') =~ ^T.*$ ]] ; then
|
|
logAutopauseAction "Knocked, resuming Java process"
|
|
pkill -CONT java
|
|
fi
|