Files
2025-09-19 15:07:35 -05:00

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