2023-01-09 01:15:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# shellcheck source=start-utils
|
|
|
|
. "${SCRIPTS:-/}start-utils"
|
|
|
|
|
|
|
|
: "${CF_PAGE_URL:=}"
|
|
|
|
: "${CF_SLUG:=}"
|
|
|
|
: "${CF_FILE_ID:=}"
|
|
|
|
: "${CF_FILENAME_MATCHER:=}"
|
2023-01-13 00:59:12 +00:00
|
|
|
: "${CF_PARALLEL_DOWNLOADS:=4}"
|
|
|
|
: "${CF_FORCE_SYNCHRONIZE:=false}"
|
2023-01-14 21:17:12 +00:00
|
|
|
: "${CF_EXCLUDE_INCLUDE_FILE:=https://raw.githubusercontent.com/itzg/docker-minecraft-server/master/files/cf-exclude-include.json}"
|
2023-01-14 18:52:35 +00:00
|
|
|
: "${CF_EXCLUDE_MODS:=}"
|
|
|
|
: "${CF_FORCE_INCLUDE_MODS:=}"
|
2023-01-09 01:15:24 +00:00
|
|
|
|
|
|
|
resultsFile=/data/.install-curseforge.env
|
|
|
|
|
|
|
|
isDebugging && set -x
|
|
|
|
|
|
|
|
args=(
|
|
|
|
--results-file="$resultsFile"
|
|
|
|
)
|
|
|
|
if [[ $CF_PAGE_URL ]]; then
|
|
|
|
args+=(--modpack-page-url="$CF_PAGE_URL")
|
|
|
|
fi
|
|
|
|
if [[ $CF_FILE_ID ]]; then
|
|
|
|
args+=(--file-id="$CF_FILE_ID")
|
|
|
|
fi
|
|
|
|
if [[ $CF_SLUG ]]; then
|
|
|
|
args+=(--slug="$CF_SLUG")
|
|
|
|
fi
|
|
|
|
if [[ $CF_FILENAME_MATCHER ]]; then
|
|
|
|
args+=(--filename-matcher="$CF_FILENAME_MATCHER")
|
|
|
|
fi
|
2023-01-13 00:59:12 +00:00
|
|
|
args+=(
|
|
|
|
--parallel-downloads="$CF_PARALLEL_DOWNLOADS"
|
|
|
|
--force-synchronize="$CF_FORCE_SYNCHRONIZE"
|
|
|
|
)
|
2023-01-09 01:15:24 +00:00
|
|
|
|
2023-01-14 18:52:35 +00:00
|
|
|
if [[ $CF_EXCLUDE_MODS || $CF_FORCE_INCLUDE_MODS ]]; then
|
|
|
|
if [[ $CF_EXCLUDE_MODS ]]; then
|
|
|
|
args+=( --exclude-mods="$CF_EXCLUDE_MODS" )
|
|
|
|
fi
|
|
|
|
if [[ $CF_FORCE_INCLUDE_MODS ]]; then
|
|
|
|
args+=( --force-include-mods="$CF_FORCE_INCLUDE_MODS" )
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ $CF_EXCLUDE_INCLUDE_FILE ]]; then
|
|
|
|
args+=( --exclude-include-file="$CF_EXCLUDE_INCLUDE_FILE" )
|
|
|
|
fi
|
|
|
|
fi
|
2023-01-13 02:37:20 +00:00
|
|
|
|
2023-01-09 01:15:24 +00:00
|
|
|
if ! mc-image-helper install-curseforge "${args[@]}"; then
|
|
|
|
log "ERROR failed to auto-install CurseForge modpack"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# grab SERVER, FAMILY and export it
|
|
|
|
set -a
|
|
|
|
# shellcheck disable=SC1090
|
|
|
|
source "${resultsFile}"
|
|
|
|
set +a
|
|
|
|
|
|
|
|
exec "${SCRIPTS:-/}start-setupWorld" "$@"
|