Add install.sh

This commit is contained in:
RomanNum3ral 2025-10-08 12:34:23 +00:00
parent 46e4d87d52
commit 20106ca390
1 changed files with 12 additions and 0 deletions

12
install.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
# Update
apt update && apt upgrade -y
# Install Java
apt install -y openjdk-21-jdk-headless
touch start.sh
echo "java -Xms32G -Xmx32G -jar paper-1.21.8-60.jar --nogui" >> start.sh
chmod +x start.sh