mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-19 15:56:24 +00:00
9 lines
188 B
Bash
Executable File
9 lines
188 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"
|
|
pkill -CONT java
|
|
fi
|