mirror of
https://github.com/TotalFreedomMC/TF-Scripts.git
synced 2024-12-22 16:05:03 +00:00
19 lines
548 B
Bash
19 lines
548 B
Bash
#!
|
|
|
|
#Pull in the .env file for variables.
|
|
source .env.sh
|
|
|
|
if test -f "$RESET_FILE";
|
|
then
|
|
echo "CRITICAL ERORR - Server is currently re-setting. Please wait for this action to complete."
|
|
exit 1
|
|
else
|
|
if screen -list | grep -q "$SCREEN_NAME";
|
|
then
|
|
echo "ERROR - There is an instance of the server already running. Make sure it is killed first and try again"
|
|
exit 1
|
|
else
|
|
screen -dmS $SCREEN_NAME java -Xms$JVM_HEAP -Xmx$JVM_HEAP $JVM_LAUNCH_OPTS -jar $PAPER_JAR_NAME
|
|
echo "Server Started"
|
|
fi
|
|
fi
|