mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
40 lines
1.1 KiB
Bash
Executable file
40 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
. ${SCRIPTS:-/}start-utils
|
|
|
|
: ${PLUGINS_SYNC_UPDATE:=true}
|
|
|
|
isDebugging && set -x
|
|
|
|
if [ -d /plugins ]; then
|
|
case ${TYPE} in
|
|
SPIGOT|BUKKIT|PAPER|MAGMA)
|
|
mkdir -p /data/plugins
|
|
log "Copying plugins over..."
|
|
if isTrue ${PLUGINS_SYNC_UPDATE}; then
|
|
updateArg="--update"
|
|
fi
|
|
# Copy plugins over using rsync to allow deeply nested updates of plugins
|
|
rsync -a --out-format="update:%f:Last Modified %M" --prune-empty-dirs $updateArg /plugins /data
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
# If any modules have been provided, copy them over
|
|
: ${COPY_MODS_DEST:="/data/mods"}
|
|
|
|
if [ -d /mods ]; then
|
|
log "Copying any mods over..."
|
|
mkdir -p $COPY_MODS_DEST
|
|
rsync -a --out-format="update:%f:Last Modified %M" "${rsyncArgs[@]}" --prune-empty-dirs --update /mods/ $COPY_MODS_DEST
|
|
fi
|
|
|
|
: ${COPY_CONFIG_DEST:="/data/config"}
|
|
|
|
if [ -d /config ]; then
|
|
log "Copying any configs from /config to $COPY_CONFIG_DEST"
|
|
mkdir -p $COPY_CONFIG_DEST
|
|
rsync -a --out-format="update:%f:Last Modified %M" "${rsyncArgs[@]}" --prune-empty-dirs --update /config/ $COPY_CONFIG_DEST
|
|
fi
|
|
|
|
exec ${SCRIPTS:-/}start-finalSetupServerProperties $@
|