mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-12 13:22:28 +00:00
Move DEBUG_MEMORY output to beginning of init (#2519)
This commit is contained in:
parent
ca2c15ea8e
commit
2084f1ea12
2 changed files with 6 additions and 6 deletions
|
@ -47,6 +47,12 @@ if [ ! -e /data/eula.txt ]; then
|
|||
writeEula
|
||||
fi
|
||||
|
||||
if isTrue "${DEBUG_MEMORY:-false}"; then
|
||||
log "Memory usage and availability (in MB)"
|
||||
uname -a
|
||||
free -m
|
||||
fi
|
||||
|
||||
##########################################
|
||||
# Setup RCON password
|
||||
|
||||
|
|
|
@ -192,12 +192,6 @@ if isTrue "${USE_SIMD_FLAGS}"; then
|
|||
"
|
||||
fi
|
||||
|
||||
if isTrue "${DEBUG_MEMORY}"; then
|
||||
log "Memory usage and availability (in MB)"
|
||||
uname -a
|
||||
free -m
|
||||
fi
|
||||
|
||||
if [[ ${INIT_MEMORY} || ${MAX_MEMORY} ]]; then
|
||||
log "Setting initial memory to ${INIT_MEMORY:=${MEMORY}} and max to ${MAX_MEMORY:=${MEMORY}}"
|
||||
if [[ ${INIT_MEMORY} ]]; then
|
||||
|
|
Loading…
Reference in a new issue