first commit

This commit is contained in:
2025-05-20 12:38:48 -07:00
parent eb601e9ee9
commit 5fa9cf51fe
2 changed files with 53 additions and 0 deletions

22
files/install_script.sh Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# Copyright (c) 2022 fithwum
# All rights reserved
# Main install (Debian).
# Check for server files and download if needed.
# Looking for run-${MC_VERSION}.sh
# Set permissions.
chown 99:100 -R /veloren
chmod 777 -R /veloren
sleep 1
# Run Minecraft server.
echo " "
echo "INFO ! Starting Minecraft Server $MC_VERSION"
exec /veloren/ --dataPath=/MCserver
exit