added quilt
All checks were successful
Build and Push Minecraft Docker Images on Debian-base update / Docker prune (vm-docker-build2) (push) Successful in 55s
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 24s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 1m56s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 1m57s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 1m15s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 1m18s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push quilt (push) Successful in 1m14s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Successful in 1m13s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 1m22s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 7s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 1m11s
All checks were successful
Build and Push Minecraft Docker Images on Debian-base update / Docker prune (vm-docker-build2) (push) Successful in 55s
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 24s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 1m56s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push bukkit (push) Successful in 1m57s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push forge (push) Successful in 1m15s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 1m18s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push quilt (push) Successful in 1m14s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing (push) Successful in 1m13s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 1m22s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 7s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 1m11s
This commit is contained in:
104
quilt/Install_Script.sh
Normal file
104
quilt/Install_Script.sh
Normal file
@@ -0,0 +1,104 @@
|
||||
#!/bin/bash
|
||||
# Copyright (c) 2022 fithwum
|
||||
# All rights reserved
|
||||
|
||||
MC_DIR=/MCserver
|
||||
EULA_FILE=$MC_DIR/eula.txt
|
||||
EULA_MARKER=$MC_DIR/.eula_accepted
|
||||
|
||||
# Main Install Links
|
||||
https://quiltmc.org/api/v1/download-latest-installer/java-universal
|
||||
INSTALLER_FILE=https://quiltmc.org/api/v1/download-latest-installer/java-universal
|
||||
MC_RUN_FILE=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/neoforged/run.sh
|
||||
|
||||
# Main install (Debian).
|
||||
# Check for server files and download if needed.
|
||||
if [ -e $MC_DIR/quilt-installer-$QUILT_VERSION.jar ]
|
||||
then
|
||||
echo " "
|
||||
echo "INFO ! quilt-installer-$QUILT_VERSION.jar found starting now."
|
||||
else
|
||||
echo " "
|
||||
echo "WARNING ! quilt-installer-$QUILT_VERSION.jar is out of date/missing ... will download now."
|
||||
echo " "
|
||||
echo "INFO ! Cleaning old files."
|
||||
cd $MC_DIR
|
||||
mkdir -p /old-server-versions/
|
||||
mv quilt-installer-*.jar old-server-versions/
|
||||
mv /libraries /libraries_OLD
|
||||
mv /libraries_OLD old-server-versions/
|
||||
wget --no-cache --show-progress --progress=bar:force:noscroll $INSTALLER_FILE -O quilt-installer-$QUILT_VERSION.jar
|
||||
chmod +x quilt-installer-$QUILT_VERSION.jar
|
||||
java -jar quilt-installer-$QUILT_VERSION.jar install server $MC_VERSION --download-server
|
||||
cd server
|
||||
mv * /$MC_DIR
|
||||
cd ..
|
||||
rm -fr server
|
||||
cd ..
|
||||
fi
|
||||
|
||||
# Looking for run.sh
|
||||
if [ -e $MC_DIR/run-$MC_VERSION.sh ]
|
||||
then
|
||||
echo " "
|
||||
echo "INFO ! run-$MC_VERSION.sh found ... will use existing file."
|
||||
else
|
||||
echo " "
|
||||
echo "WARNING ! run-$MC_VERSION.sh is out of date/missing ... will download now."
|
||||
mv $MC_DIR/run-*.sh $MC_DIR/old-server-versions/
|
||||
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_RUN_FILE -O $MC_DIR/run-$MC_VERSION-$QUILT_VERSION.sh
|
||||
chmod +x $MC_DIR/run-$MC_VERSION-$QUILT_VERSION.sh
|
||||
fi
|
||||
|
||||
echo "INFO ! Setting game port."
|
||||
if [ -f $MC_DIR/server.properties ]; then
|
||||
sed -i '/server-port='*'/c\server-port='$GAME_PORT'' $MC_DIR/server.properties
|
||||
fi
|
||||
|
||||
echo "INFO ! Setting java settings."
|
||||
cat > $MC_DIR/user_jvm_args.txt <<EOF
|
||||
-Xmx${XMX_SIZE}
|
||||
-Xms${XMS_SIZE}
|
||||
EOF
|
||||
[ -n "$XMN_SIZE" ] && echo "-Xmn${XMN_SIZE}" >> $MC_DIR/user_jvm_args.txt
|
||||
|
||||
# Wait briefly for installer/server to generate eula.txt
|
||||
if [ ! -f "$EULA_FILE" ] && [ ! -f "$EULA_MARKER" ]; then
|
||||
echo "INFO ! Waiting for EULA generation..."
|
||||
sleep 5
|
||||
fi
|
||||
|
||||
# If EULA already accepted once, never touch it again
|
||||
if [ -f "$EULA_MARKER" ]; then
|
||||
echo "INFO ! EULA previously accepted"
|
||||
return 0 2>/dev/null || true
|
||||
fi
|
||||
|
||||
# First-time decision
|
||||
if [ "$ACCEPT_EULA" = "true" ]; then
|
||||
echo "INFO ! Accepting EULA (one-time)"
|
||||
sed -i 's/eula=false/eula=true/' "$EULA_FILE" 2>/dev/null \
|
||||
|| echo "eula=true" > "$EULA_FILE"
|
||||
touch "$EULA_MARKER"
|
||||
elif [ "$ACCEPT_EULA" = "false" ]; then
|
||||
echo "WARNING ! EULA not accepted on first run"
|
||||
echo "WARNING ! Set ACCEPT_EULA=true to proceed"
|
||||
sleep infinity
|
||||
else
|
||||
echo "ERROR ! ACCEPT_EULA must be set to true or false on first run"
|
||||
sleep infinity
|
||||
fi
|
||||
|
||||
# Set permissions.
|
||||
chown 99:100 -R $MC_DIR
|
||||
chmod 777 -R $MC_DIR
|
||||
|
||||
sleep 1
|
||||
|
||||
# Run Minecraft server.
|
||||
echo " "
|
||||
echo "INFO ! Starting Minecraft Server $MC_VERSION-$QUILT_VERSION"
|
||||
cd $MC_DIR
|
||||
exec ./run-$MC_VERSION-$QUILT_VERSION.sh nogui
|
||||
|
||||
exit
|
||||
Reference in New Issue
Block a user