docker-minecraft-server/start-minecraftFinalSetup

132 lines
3.8 KiB
Text
Raw Normal View History

2017-11-01 05:42:44 +00:00
#!/bin/bash
. /start-utils
if [ -n "$OPS" ]; then
2020-03-06 15:52:17 +00:00
log "Setting/adding ops"
rm -rf ops.txt.converted
echo $OPS | awk -v RS=, '{print}' > ops.txt
2017-11-01 05:42:44 +00:00
fi
if [ -n "$WHITELIST" ]; then
2020-03-06 15:52:17 +00:00
log "Setting whitelist"
rm -rf white-list.txt.converted
echo $WHITELIST | awk -v RS=, '{print}' > white-list.txt
2017-11-01 05:42:44 +00:00
fi
if [ -n "$ICON" -a ! -e server-icon.png ]; then
2020-03-06 15:52:17 +00:00
log "Using server icon from $ICON..."
2017-11-01 05:42:44 +00:00
# Not sure what it is yet...call it "img"
2018-06-26 00:13:47 +00:00
curl -sSL -o /tmp/icon.img $ICON
2017-11-01 05:42:44 +00:00
specs=$(identify /tmp/icon.img | awk '{print $2,$3}')
if [ "$specs" = "PNG 64x64" ]; then
mv /tmp/icon.img /data/server-icon.png
else
2020-03-06 15:52:17 +00:00
log "Converting image to 64x64 PNG..."
2017-11-01 05:42:44 +00:00
convert /tmp/icon.img -resize 64x64! /data/server-icon.png
fi
fi
# Make sure files exist and are valid JSON (for pre-1.12 to 1.12 upgrades)
2020-03-06 15:52:17 +00:00
log "Checking for JSON files."
JSON_FILES=$(find . -maxdepth 1 -name '*.json')
for j in $JSON_FILES; do
2020-01-31 03:39:35 +00:00
if [[ $(cat $j | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//') == "" ]]; then
2020-03-06 15:52:17 +00:00
log "Fixing JSON $j"
echo '[]' > $j
fi
done
2017-11-01 05:42:44 +00:00
# If any modules have been provided, copy them over
mkdir -p /data/mods
if [ -d /mods ]; then
2020-03-06 15:52:17 +00:00
log "Copying any mods over..."
rsync -a --out-format="update:%f:Last Modified %M" --prune-empty-dirs --update /mods /data
fi
2017-11-01 05:42:44 +00:00
[ -d /data/config ] || mkdir /data/config
for c in /config/*
do
if [ -f "$c" ]; then
2020-03-06 15:52:17 +00:00
log Copying configuration `basename "$c"`
2017-11-01 05:42:44 +00:00
cp -rf "$c" /data/config
fi
done
mkdir -p /data/plugins
2017-11-01 05:42:44 +00:00
if [ "$TYPE" = "SPIGOT" ]; then
if [ -d /plugins ]; then
2020-03-06 15:52:17 +00:00
log "Copying any Bukkit plugins over..."
# Copy plugins over using rsync to allow deeply nested updates of plugins
# only updates files if the source file is newer and print updated files
rsync -a --out-format="update:%f:Last Modified %M" --prune-empty-dirs --update /plugins /data
2017-11-01 05:42:44 +00:00
fi
fi
EXTRA_ARGS=""
# Optional disable console
if [[ ${CONSOLE} = false || ${CONSOLE} = FALSE ]]; then
EXTRA_ARGS+="--noconsole"
fi
# Optional disable GUI for headless servers
if [[ ${GUI} = false || ${GUI} = FALSE ]]; then
EXTRA_ARGS="${EXTRA_ARGS} nogui"
fi
# put these prior JVM_OPTS at the end to give any memory settings there higher precedence
2020-03-06 15:52:17 +00:00
log "Setting initial memory to ${INIT_MEMORY:=${MEMORY}} and max to ${MAX_MEMORY:=${MEMORY}}"
2017-11-01 05:42:44 +00:00
expandedDOpts=
if [ -n "$JVM_DD_OPTS" ]; then
for dopt in $JVM_DD_OPTS
do
expandedDOpts="${expandedDOpts} -D${dopt/:/=}"
done
fi
mcServerRunnerArgs="--stop-duration 60s"
2017-11-01 05:42:44 +00:00
if [[ ${TYPE} == "FEED-THE-BEAST" ]]; then
if [ ! -e "${FTB_DIR}/ops.json" -a -e /data/ops.txt ]; then
cp -f /data/ops.txt ${FTB_DIR}/
fi
if [ ! -e "${FTB_DIR}/whitelist.json" -a -e /data/white-list.txt ]; then
cp -f /data/white-list.txt ${FTB_DIR}/
fi
cp -f /data/eula.txt "${FTB_DIR}/"
cat > "${FTB_DIR}/settings-local.sh" <<EOF
export MIN_RAM="${INIT_MEMORY}"
export MAX_RAM="${MAX_MEMORY}"
export JAVA_PARAMETERS="${JVM_XX_OPTS} -Xms${INIT_MEMORY} ${JVM_OPTS} $expandedDOpts"
EOF
# patch CurseForge cfg file, if present
if [ -f "${FTB_DIR}/settings.cfg" ]; then
sed -i "s/MAX_RAM=[^;]*/MAX_RAM=${MAX_MEMORY}/" "${FTB_DIR}/settings.cfg"
fi
cd "${FTB_DIR}"
2020-03-06 15:52:17 +00:00
log "Running FTB ${FTB_SERVER_START} in ${FTB_DIR} ..."
if isTrue ${DEBUG_EXEC}; then
set -x
fi
exec mc-server-runner ${mcServerRunnerArgs} "${FTB_SERVER_START}"
2017-11-01 05:42:44 +00:00
else
# If we have a bootstrap.txt file... feed that in to the server stdin
if [ -f /data/bootstrap.txt ]; then
bootstrapArgs="--bootstrap /data/bootstrap.txt"
fi
2020-03-06 15:52:17 +00:00
log "Starting the Minecraft server..."
JVM_OPTS="-Xms${INIT_MEMORY} -Xmx${MAX_MEMORY} ${JVM_OPTS}"
if isTrue ${DEBUG_EXEC}; then
set -x
fi
exec mc-server-runner ${bootstrapArgs} ${mcServerRunnerArgs} java $JVM_XX_OPTS $JVM_OPTS $expandedDOpts -jar $SERVER "$@" $EXTRA_ARGS
2017-11-01 05:42:44 +00:00
fi