mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 14:22:27 +00:00
8 lines
193 B
Bash
Executable file
8 lines
193 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. /start-utils
|
|
|
|
if [[ $( ps -a -o stat,comm | grep 'java' | awk '{ print $1 }') =~ ^T.*$ ]] ; then
|
|
logAutopauseAction "Knocked, resuming Java process"
|
|
killall -q -CONT java
|
|
fi
|