mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-18 07:26:24 +00:00
14 lines
271 B
Bash
14 lines
271 B
Bash
#!/bin/bash
|
|
|
|
. "$(dirname "$0")/../start-utils"
|
|
if isTrue "${DEBUG_AUTOPAUSE}"; then
|
|
set -x
|
|
fi
|
|
|
|
if [[ $( ps -ax -o stat,comm | grep 'java' | awk '{ print $1 }') =~ ^T.*$ ]] ; then
|
|
pkill -CONT java
|
|
|
|
# remove .paused file from data directory
|
|
rm -f /data/.paused
|
|
fi
|