With autopause check for process in stopped or sleep state (#1963)

This commit is contained in:
Geoff Bourne 2023-02-14 20:42:11 -06:00 committed by GitHub
parent 812b64045d
commit 4df1db9535
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ current_uptime() {
}
java_running() {
[[ $( ps -ax -o stat,comm | grep 'java' | awk '{ print $1 }') =~ ^S.*$ ]]
[[ $( ps -ax -o stat,comm | grep 'java' | awk '{ print $1 }') =~ ^(S|T).*$ ]]
}
java_process_exists() {