docker-minecraft-server/scripts/start-setupModconfig

29 lines
775 B
Plaintext
Raw Normal View History

2017-11-01 05:42:44 +00:00
#!/bin/bash
# shellcheck source=start-utils
. "${SCRIPTS:-/}start-utils"
2020-03-06 15:52:17 +00:00
2017-11-01 05:42:44 +00:00
# If supplied with a URL for a config (simple zip of configurations), download it and unpack
if [[ "$MODCONFIG" ]]; then
case "X$MODCONFIG" in
X[Hh][Tt][Tt][Pp]*[Zz][iI][pP])
2020-03-06 15:52:17 +00:00
log "Downloading mod/plugin configs via HTTP"
log " from $MODCONFIG ..."
2017-11-01 05:42:44 +00:00
curl -sSL -o /tmp/modconfig.zip "$MODCONFIG"
if [ "$FAMILY" = "SPIGOT" ]; then
2017-11-01 05:42:44 +00:00
mkdir -p /data/plugins
unzip -o -d /data/plugins /tmp/modconfig.zip
else
mkdir -p /data/config
unzip -o -d /data/config /tmp/modconfig.zip
fi
rm -f /tmp/modconfig.zip
;;
*)
2020-03-06 15:52:17 +00:00
log "Invalid URL given for modconfig: Must be HTTP or HTTPS and a ZIP file"
2017-11-01 05:42:44 +00:00
;;
esac
fi
exec "${SCRIPTS:-/}start-setupMounts" "$@"