mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-02-17 07:03:57 +00:00
11 lines
183 B
Bash
11 lines
183 B
Bash
#!/bin/bash
|
|
|
|
. "$(dirname "$0")/../start-utils"
|
|
if isTrue "${DEBUG_AUTOSTOP}"; then
|
|
set -x
|
|
fi
|
|
|
|
logAutostopAction "Stopping Java process"
|
|
pkill -f --signal SIGTERM mc-server-runner
|
|
|