mirror of
https://github.com/itzg/docker-minecraft-server
synced 2025-03-04 23:27:17 +00:00
13 lines
274 B
Bash
13 lines
274 B
Bash
#!/bin/bash
|
|
|
|
. /start-utils
|
|
if isTrue "${DEBUG_AUTOSTOP}"; then
|
|
set -x
|
|
fi
|
|
|
|
logAutostopAction "Stopping Java process"
|
|
if isTrue "${AUTOSTOP_PKILL_USE_SUDO:-false}"; then
|
|
sudo pkill -f --signal SIGTERM mc-server-runner
|
|
else
|
|
pkill -f --signal SIGTERM mc-server-runner
|
|
fi
|