update
All checks were successful
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 54s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-fabric (push) Successful in 15s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-neoforged (push) Successful in 1m47s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 2m23s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 14s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 3m10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-vanilla (push) Successful in 1m47s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 9s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 1m0s
All checks were successful
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 54s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-fabric (push) Successful in 15s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-neoforged (push) Successful in 1m47s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 2m23s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 14s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 3m10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-vanilla (push) Successful in 1m47s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 9s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 1m0s
This commit is contained in:
@@ -21,7 +21,7 @@ env:
|
|||||||
IMAGE_REPO_MINECRAFT: minecraft
|
IMAGE_REPO_MINECRAFT: minecraft
|
||||||
IMAGE_TAG_DEBIAN: bookworm
|
IMAGE_TAG_DEBIAN: bookworm
|
||||||
DIGEST_FILE: .cache/debian-base.digest
|
DIGEST_FILE: .cache/debian-base.digest
|
||||||
VERSIONS: vanilla testing-vanilla fabric testing-fabric
|
VERSIONS: vanilla testing-vanilla fabric testing-fabric neoforged testing-neoforged
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
poll-debian-base-and-detect-changes:
|
poll-debian-base-and-detect-changes:
|
||||||
@@ -149,7 +149,7 @@ jobs:
|
|||||||
needs.poll-debian-base-and-detect-changes.outputs.new_versions != ''
|
needs.poll-debian-base-and-detect-changes.outputs.new_versions != ''
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
version: [vanilla, testing-vanilla, fabric, testing-fabric]
|
version: [vanilla, testing-vanilla, fabric, testing-fabric, neoforged, testing-neoforged]
|
||||||
name: Build and Push ${{ matrix.version }}
|
name: Build and Push ${{ matrix.version }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
FROM gitea.fithwum.tech/fithwum/debian-base:bookworm
|
FROM gitea.fithwum.tech/fithwum/debian-base:bookworm
|
||||||
LABEL maintainer="fithwum"
|
LABEL maintainer="fithwum"
|
||||||
|
|
||||||
ENV ACCEPT_EULA="false"
|
ENV ACCEPT_EULA=""
|
||||||
ENV GAME_PORT=25565
|
ENV GAME_PORT=""
|
||||||
ENV FORGE_URL=https://maven.minecraftforge.net/net/minecraftforge/forge/1.19.2-43.2.0/forge-1.19.2-43.2.0-installer.jar
|
ENV SERVER_VERSION=""
|
||||||
|
ENV NEOFORGED_VERSION=""
|
||||||
|
ENV XMX_SIZE=""
|
||||||
|
ENV XMS_SIZE=""
|
||||||
|
ENV XMN_SIZE=""
|
||||||
|
|
||||||
# URL's for files
|
# URL's for files
|
||||||
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/forge/Install_Script.sh
|
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/neoforged/Install_Script.sh
|
||||||
|
|
||||||
# Install java-17 & Dependencies.
|
# Install java-17 & Dependencies.
|
||||||
RUN apt-get -y update && apt-get -y autoclean && apt-get -y autoremove \
|
RUN apt-get -y update && apt-get -y autoclean && apt-get -y autoremove \
|
||||||
@@ -22,10 +26,7 @@ RUN apt-get -y update && apt-get -y --fix-broken install \
|
|||||||
RUN mkdir -p /MCserver /MCtemp \
|
RUN mkdir -p /MCserver /MCtemp \
|
||||||
&& chmod 777 -R /MCserver /MCtemp \
|
&& chmod 777 -R /MCserver /MCtemp \
|
||||||
&& chown 99:100 -R /MCserver /MCtemp \
|
&& chown 99:100 -R /MCserver /MCtemp \
|
||||||
&& cd /MCserver \
|
&& cd /MCserver
|
||||||
&& wget $FORGE_URL -O forge-1.19.2-43.2.0-installer.jar \
|
|
||||||
&& java -jar forge-1.19.2-43.2.0-installer.jar --installServer \
|
|
||||||
&& rm -frv forge-1.19.2-43.2.0-installer.jar forge-1.19.2-43.2.0-installer.jar.log
|
|
||||||
|
|
||||||
ADD "$INSTALL_SCRIPT" /MCtemp
|
ADD "$INSTALL_SCRIPT" /MCtemp
|
||||||
RUN chmod +x /MCtemp/Install_Script.sh
|
RUN chmod +x /MCtemp/Install_Script.sh
|
||||||
|
|||||||
@@ -2,71 +2,101 @@
|
|||||||
# Copyright (c) 2022 fithwum
|
# Copyright (c) 2022 fithwum
|
||||||
# All rights reserved
|
# All rights reserved
|
||||||
|
|
||||||
# Variables.
|
# Main Install Links
|
||||||
echo " "
|
INSTALLER_FILE=https://maven.neoforged.net/releases/net/neoforged/neoforge/$NEOFORGED_VERSION-beta/neoforge-$NEOFORGED_VERSION-beta-installer.jar
|
||||||
echo "INFO ! Checking for latest Minecraft Server version."
|
SERVER_FILE=https://github.com/neoforged/ServerStarterJar/releases/download/$SERVER_VERSION/server.jar
|
||||||
MC_VERSION=1.19.2
|
MC_RUN_FILE=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/fabric/run.sh
|
||||||
|
|
||||||
EULA_FILE=https://raw.githubusercontent.com/fithwum/minecraft/refs/heads/master/forge/forge-${MC_VERSION}/files/eula.txt
|
rm -fr /MCserver/run_*.sh
|
||||||
OPS_FILE=https://raw.githubusercontent.com/fithwum/minecraft/refs/heads/master/forge/forge-${MC_VERSION}/files/ops.json
|
|
||||||
WHITELIST_FILE=https://raw.githubusercontent.com/fithwum/minecraft/refs/heads/master/forge/forge-${MC_VERSION}/files/whitelist.json
|
|
||||||
|
|
||||||
# Main install (Debian).
|
# Main install (Debian).
|
||||||
# Check for files in /MCserver and download if needed.
|
# Check for server files and download if needed.
|
||||||
# Looking for run-forge_${MC_VERSION}.sh
|
if [ -e /MCserver/server-$NEOFORGED_VERSION.jar ]
|
||||||
if [ -e /MCserver/run-forge_${MC_VERSION}.sh ]
|
|
||||||
then
|
then
|
||||||
echo " "
|
echo " "
|
||||||
echo "INFO ! run-forge_${MC_VERSION}.sh found ... will use existing file."
|
echo "INFO ! server-$NEOFORGED_VERSION.jar found starting now."
|
||||||
else
|
else
|
||||||
echo " "
|
echo " "
|
||||||
echo "WARNING ! run-forge_${MC_VERSION_OLD}.sh is out of date/missing ... will download now."
|
echo "WARNING ! server-$NEOFORGED_VERSION.jar is out of date/missing ... will download now."
|
||||||
mv /MCserver/run.sh /MCserver/run-forge_${MC_VERSION}.sh
|
echo " "
|
||||||
|
echo "INFO ! Cleaning old files."
|
||||||
|
rm -fr /MCserver/neoforge-*.jar /MCserver/server-*.jar
|
||||||
|
wget --no-cache --show-progress --progress=bar:force:noscroll $INSTALLER_FILE -O /MCserver/neoforge-$NEOFORGED_VERSION-beta-installer.jar
|
||||||
|
java -jar neoforge-$NEOFORGED_VERSION-beta-installer.jar --installServer
|
||||||
|
wget --no-cache --show-progress --progress=bar:force:noscroll $SERVER_FILE -O /MCserver/server-$NEOFORGED_VERSION.jar
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check for needed files
|
sleep 1
|
||||||
if [ -e /MCserver/eula.txt ]
|
|
||||||
|
# Looking for run.sh
|
||||||
|
if [ -e /MCserver/run-$NEOFORGED_VERSION.sh ]
|
||||||
then
|
then
|
||||||
echo " "
|
echo " "
|
||||||
echo "INFO ! eula.txt found ... will use existing file."
|
echo "INFO ! run-$NEOFORGED_VERSION.sh found ... will use existing file."
|
||||||
else
|
else
|
||||||
echo " "
|
echo " "
|
||||||
echo "WARNING ! eula.txt is missing ... will download now."
|
echo "WARNING ! run-$NEOFORGED_VERSION.sh is out of date/missing ... will download now."
|
||||||
wget --no-cache ${EULA_FILE} -O /MCserver/eula.txt
|
rm -fr /MCserver/run-*.sh
|
||||||
|
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_RUN_FILE -O /MCserver/run-$NEOFORGED_VERSION.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -e /MCserver/ops.json ]
|
# Check for EULA
|
||||||
then
|
if [ ! -f /MCserver/eula.txt ]; then
|
||||||
echo " "
|
:
|
||||||
echo "INFO ! ops.json found ... will use existing file."
|
else
|
||||||
else
|
if [ "$ACCEPT_EULA" == "false" ]; then
|
||||||
echo " "
|
if grep -rq 'eula=true' /MCserver/eula.txt; then
|
||||||
echo "WARNING ! ops.json is missing ... will download now."
|
sed -i '/eula=true/c\eula=false' /MCserver/eula.txt
|
||||||
wget --no-cache ${OPS_FILE} -O /MCserver/ops.json
|
fi
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! EULA not accepted, you must accept the EULA"
|
||||||
|
echo " to start the Server, putting server in sleep mode"
|
||||||
|
sleep infinity
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -e /MCserver/whitelist.json ]
|
sleep 1
|
||||||
then
|
|
||||||
|
if [ ! -f /MCserver/eula.txt ]; then
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! EULA not found please stand by..."
|
||||||
|
sleep 5
|
||||||
|
fi
|
||||||
|
if [ "$ACCEPT_EULA" == "true" ]; then
|
||||||
|
if grep -rq 'eula=false' /MCserver/eula.txt; then
|
||||||
|
sed -i '/eula=false/c\eula=true' /MCserver/eula.txt
|
||||||
echo " "
|
echo " "
|
||||||
echo "INFO ! whitelist.json found ... will use existing file."
|
echo "INFO ! EULA accepted, server restarting, please wait..."
|
||||||
else
|
sleep 1
|
||||||
echo " "
|
exec /MCserver/run-$NEOFORGED_VERSION.sh --dataPath=/MCserver
|
||||||
echo "WARNING ! whitelist.json is missing ... will download now."
|
exit 0
|
||||||
wget --no-cache ${WHITELIST_FILE} -O /MCserver/whitelist.json
|
fi
|
||||||
|
elif [ "$ACCEPT_EULA" == "false" ]; then
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! EULA not accepted, you must accept the EULA"
|
||||||
|
echo " to start the Server, putting server in sleep mode"
|
||||||
|
sleep infinity
|
||||||
|
else
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! Something went wrong, please check EULA variable"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
sleep 1
|
||||||
|
echo "INFO ! Setting game port."
|
||||||
|
sed -i '/server-port='*'/c\server-port='$GAME_PORT'' /MCserver/server.properties
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
||||||
# Set permissions.
|
# Set permissions.
|
||||||
chown 99:100 -R /MCserver
|
chown 99:100 -R /MCserver
|
||||||
chmod 777 -R /MCserver
|
chmod 777 -R /MCserver
|
||||||
chmod +x /MCserver/run-forge_${MC_VERSION}.sh
|
chmod +x /MCserver/run-$NEOFORGED_VERSION.sh
|
||||||
|
chmod +x /MCserver/neoforge-$NEOFORGED_VERSION-beta-installer.jar
|
||||||
|
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
||||||
# Run Minecraft server.
|
# Run Minecraft server.
|
||||||
echo " "
|
echo " "
|
||||||
echo "INFO ! Starting Minecraft Server ${MC_VERSION}"
|
echo "INFO ! Starting Minecraft Server $NEOFORGED_VERSION"
|
||||||
exec /MCserver/run-forge_${MC_VERSION}.sh --dataPath=/MCserver
|
exec /MCserver/run-$NEOFORGED_VERSION.sh --dataPath=/MCserver
|
||||||
|
|
||||||
exit
|
exit
|
||||||
13
neoforged/run.sh
Normal file
13
neoforged/run.sh
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Copyright (c) 2022 fithwum
|
||||||
|
# All rights reserved
|
||||||
|
|
||||||
|
cd /MCserver
|
||||||
|
JAR=./server-*.jar
|
||||||
|
|
||||||
|
while [ true ]; do
|
||||||
|
java -Xmx$XMX_SIZE -Xms$XMS_SIZE -Xmn$XMN_SIZE -Dbungee.epoll=false -jar $JAR nogui
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
40
testing-neoforged/Dockerfile
Normal file
40
testing-neoforged/Dockerfile
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
FROM gitea.fithwum.tech/fithwum/debian-base:bookworm
|
||||||
|
LABEL maintainer="fithwum"
|
||||||
|
|
||||||
|
ENV ACCEPT_EULA=""
|
||||||
|
ENV GAME_PORT=""
|
||||||
|
ENV NEOFORGE_VERSION=""
|
||||||
|
ENV XMX_SIZE=""
|
||||||
|
ENV XMS_SIZE=""
|
||||||
|
ENV XMN_SIZE=""
|
||||||
|
|
||||||
|
# URL's for files
|
||||||
|
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/neoforged/Install_Script.sh
|
||||||
|
|
||||||
|
# Install java-17 & Dependencies.
|
||||||
|
RUN apt-get -y update && apt-get -y autoclean && apt-get -y autoremove \
|
||||||
|
&& apt-get install -y wget
|
||||||
|
RUN wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
|
||||||
|
&& dpkg -i packages-microsoft-prod.deb
|
||||||
|
RUN apt-get -y update && apt-get -y --fix-broken install \
|
||||||
|
&& apt-get install -y --no-install-recommends msopenjdk-21 bzip2 lsb-release screen jq \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& update-ca-certificates -f;
|
||||||
|
|
||||||
|
# Folder creation.
|
||||||
|
RUN mkdir -p /MCserver /MCtemp \
|
||||||
|
&& chmod 777 -R /MCserver /MCtemp \
|
||||||
|
&& chown 99:100 -R /MCserver /MCtemp \
|
||||||
|
&& cd /MCserver
|
||||||
|
|
||||||
|
ADD "$INSTALL_SCRIPT" /MCtemp
|
||||||
|
RUN chmod +x /MCtemp/Install_Script.sh
|
||||||
|
|
||||||
|
# Directory where data is stored
|
||||||
|
VOLUME /MCserver
|
||||||
|
|
||||||
|
# 25565 Default.
|
||||||
|
EXPOSE 25565/udp 25565/tcp
|
||||||
|
|
||||||
|
# Run command
|
||||||
|
CMD [ "/bin/bash", "./MCtemp/Install_Script.sh" ]
|
||||||
100
testing-neoforged/Install_Script.sh
Normal file
100
testing-neoforged/Install_Script.sh
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Copyright (c) 2022 fithwum
|
||||||
|
# All rights reserved
|
||||||
|
|
||||||
|
# Main Install Links
|
||||||
|
SERVER_FILE=https://maven.neoforged.net/releases/net/neoforged/neoforge/$NEOFORGE_VERSION-beta/neoforge-$NEOFORGE_VERSION-beta-installer.jar
|
||||||
|
MC_RUN_FILE=https://gitea.fithwum.tech/fithwum/minecraft/raw/branch/master/fabric/run.sh
|
||||||
|
|
||||||
|
rm -fr /MCserver/run_*.sh
|
||||||
|
|
||||||
|
# Main install (Debian).
|
||||||
|
# Check for server files and download if needed.
|
||||||
|
if [ -e /MCserver/neoforge-$NEOFORGE_VERSION-beta-installer.jar ]
|
||||||
|
then
|
||||||
|
echo " "
|
||||||
|
echo "INFO ! neoforge-$NEOFORGE_VERSION-beta-installer.jar found installing now."
|
||||||
|
else
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! neoforge-$NEOFORGE_VERSION-beta-installer.jar is out of date/missing ... will download now."
|
||||||
|
echo " "
|
||||||
|
echo "INFO ! Cleaning old files."
|
||||||
|
mkdir /MCserver/old-server-versions
|
||||||
|
mv /MCserver/fabric-*-*.jar /MCserver/old-server-versions/
|
||||||
|
wget --no-cache --show-progress --progress=bar:force:noscroll $SERVER_FILE -O /MCserver/neoforge-$NEOFORGE_VERSION-beta-installer.jar
|
||||||
|
fi
|
||||||
|
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
# Looking for run.sh
|
||||||
|
if [ -e /MCserver/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 /MCserver/run-*.sh /MCserver/old-server-versions/
|
||||||
|
wget --no-cache --show-progress --progress=bar:force:noscroll $MC_RUN_FILE -O /MCserver/run-$MC_VERSION.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check for EULA
|
||||||
|
if [ ! -f /MCserver/eula.txt ]; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
if [ "$ACCEPT_EULA" == "false" ]; then
|
||||||
|
if grep -rq 'eula=true' /MCserver/eula.txt; then
|
||||||
|
sed -i '/eula=true/c\eula=false' /MCserver/eula.txt
|
||||||
|
fi
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! EULA not accepted, you must accept the EULA"
|
||||||
|
echo " to start the Server, putting server in sleep mode"
|
||||||
|
sleep infinity
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
if [ ! -f /MCserver/eula.txt ]; then
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! EULA not found please stand by..."
|
||||||
|
sleep 5
|
||||||
|
fi
|
||||||
|
if [ "$ACCEPT_EULA" == "true" ]; then
|
||||||
|
if grep -rq 'eula=false' /MCserver/eula.txt; then
|
||||||
|
sed -i '/eula=false/c\eula=true' /MCserver/eula.txt
|
||||||
|
echo " "
|
||||||
|
echo "INFO ! EULA accepted, server restarting, please wait..."
|
||||||
|
sleep 1
|
||||||
|
exec /MCserver/run-$MC_VERSION.sh --dataPath=/MCserver
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
elif [ "$ACCEPT_EULA" == "false" ]; then
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! EULA not accepted, you must accept the EULA"
|
||||||
|
echo " to start the Server, putting server in sleep mode"
|
||||||
|
sleep infinity
|
||||||
|
else
|
||||||
|
echo " "
|
||||||
|
echo "WARNING ! Something went wrong, please check EULA variable"
|
||||||
|
fi
|
||||||
|
|
||||||
|
sleep 1
|
||||||
|
echo "INFO ! Setting game port."
|
||||||
|
sed -i '/server-port='*'/c\server-port='$GAME_PORT'' /MCserver/server.properties
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
# Set permissions.
|
||||||
|
chown 99:100 -R /MCserver
|
||||||
|
chmod 777 -R /MCserver
|
||||||
|
chmod +x /MCserver/run-$MC_VERSION.sh
|
||||||
|
chmod +x /MCserver/neoforge-$NEOFORGE_VERSION-beta-installer.jar
|
||||||
|
|
||||||
|
sleep 1
|
||||||
|
|
||||||
|
# Run Minecraft server.
|
||||||
|
echo " "
|
||||||
|
echo "INFO ! Starting Minecraft Server $MC_VERSION"
|
||||||
|
exec /MCserver/run-$MC_VERSION.sh --dataPath=/MCserver
|
||||||
|
|
||||||
|
exit
|
||||||
3
testing-neoforged/eula.txt
Normal file
3
testing-neoforged/eula.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula).
|
||||||
|
#Mon Jul 13 15:34:07 PDT 2020
|
||||||
|
eula=true
|
||||||
14
testing-neoforged/ops.json
Normal file
14
testing-neoforged/ops.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"uuid": "e9191443-8706-461c-a4a9-6b12b86f7fc0",
|
||||||
|
"name": "fithwum",
|
||||||
|
"level": 4,
|
||||||
|
"bypassesPlayerLimit": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "fb505f65-bfb5-45f7-8e16-16ce5ef09eb2",
|
||||||
|
"name": "Lacarthian",
|
||||||
|
"level": 4,
|
||||||
|
"bypassesPlayerLimit": true
|
||||||
|
}
|
||||||
|
]
|
||||||
13
testing-neoforged/run.sh
Normal file
13
testing-neoforged/run.sh
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Copyright (c) 2022 fithwum
|
||||||
|
# All rights reserved
|
||||||
|
|
||||||
|
cd /MCserver
|
||||||
|
JAR=./server.jar
|
||||||
|
|
||||||
|
while [ true ]; do
|
||||||
|
java -Xmx$XMX_SIZE -Xms$XMS_SIZE -Xmn$XMN_SIZE -Dbungee.epoll=false -jar $JAR nogui
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
38
testing-neoforged/whitelist.json
Normal file
38
testing-neoforged/whitelist.json
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"uuid": "9b8d4ecf-beae-4277-ba52-7c9d25bb1968",
|
||||||
|
"name": "DHRmike"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "6218840a-7cba-4eb6-aec2-5246f2152c8a",
|
||||||
|
"name": "lordWiseman28"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "e9191443-8706-461c-a4a9-6b12b86f7fc0",
|
||||||
|
"name": "fithwum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "62bb6a62-c176-4ad7-a49d-e5b2ce0954cf",
|
||||||
|
"name": "OzyWizard"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "fb505f65-bfb5-45f7-8e16-16ce5ef09eb2",
|
||||||
|
"name": "Lacarthian"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "a90f9d4e-33d5-4855-9be5-de025b707f54",
|
||||||
|
"name": "Drakaul"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "f4d00276-62f4-4d30-a085-998c71916ecd",
|
||||||
|
"name": "___ORANGE___"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "27b719c4-daf3-429b-af2d-da3aab113f79",
|
||||||
|
"name": "Rekage_"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"uuid": "d02f2de9-d414-42e2-b2fd-ec18bc2625ef",
|
||||||
|
"name": "Izzy761"
|
||||||
|
}
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user