Compare commits

..

No commits in common. "1e9b90071667416c0b9c0b26b5cdef0c177f27a5" and "eb6eb2cdf16225c8a995c21aed4cddb02b6e7a81" have entirely different histories.

4 changed files with 10 additions and 35 deletions

View File

@ -3,25 +3,22 @@ To switch user use:
# To DO # To DO
- [x] Basic commands - [x] Basic commands
- [x] Permisionss of files in this git
- [x] server.properties + run.sh + eula.txt - [x] server.properties + run.sh + eula.txt
- [x] iptable commands - [x] iptable commands
- [x] my own .service file - [x] my own .service file
- [x] modification of run.sh
- [x] screen usege - [x] screen usege
- [x] SSH keys - [x] SSH keys
- [x] do not hardcode variables - [x] Full test under VM
- [x] Can it run under LXC container???
# To be nice
- [x] do not hardcode soma variables
- [x] BASH script - [x] BASH script
- [x] set up of min/max RAM - [x] manual set up of min/max RAM
- [x] auto add proxy mod [Proxy-compatible-forge](https://cdn.modrinth.com/data/vDyrHl8l/versions/K43ePlgq/proxy-compatible-forge-1.20-1.1.4.jar) - [x] auto add proxy mod (ProxyMod)[https://cdn.modrinth.com/data/vDyrHl8l/versions/K43ePlgq/proxy-compatible-forge-1.20-1.1.4.jar]
- [ ] Do I need it? what is modern forwarding??? yes I need
- [x] config/pcf-common.toml Forwarding secrets - [x] config/pcf-common.toml Forwarding secrets
- [x] Update server.properties (whitelist, online-mode=false, name, ...) - [x] Update server.properties (whitelist, online-mode=false, name, ...)
- [x] ModernForwarding
- [x] SkinRestorer
- [ ] Better way to select bonus mods
- [ ] Do not stack mods in this repo
- [ ] Better handeling farwarding secrets
- [ ] TerraLith to world gen - [ ] TerraLith to world gen

View File

@ -1,5 +0,0 @@
#Modern Forwarding Settings
[modernForwarding]
forwardingSecret = "CLN4RKWSxUUm"

View File

@ -102,14 +102,7 @@ fi
printf "Are you planing to use Velocity proxy to acces this server? [Y/n]: \n" printf "Are you planing to use Velocity proxy to acces this server? [Y/n]: \n"
read ansVeloProxy read ansVeloProxy
if [[ "$ansVeloProxy" =~ ("y"|"Y") || -z $ansVeloProxy ]]; then
printf "Do you wish to set up moder forwarding? [Y/n]: \n"
read ansModernFarward
fi
printf "Do you want to set up SkinRestorer [Y/n]: \n"
read ansSkinRestorer
sleep 2 sleep 2
@ -167,16 +160,6 @@ cd ..
# adds mode to help comunicate with VeloProxy # adds mode to help comunicate with VeloProxy
if [[ "$ansVeloProxy" =~ ["y"|"Y"] || -z $ansVeloProxy ]]; then if [[ "$ansVeloProxy" =~ ["y"|"Y"] || -z $ansVeloProxy ]]; then
mv data/proxy-compatible-forge*.jar /opt/minecraft/mods/ mv data/proxy-compatible-forge*.jar /opt/minecraft/mods/
if [[ "$ansModernFarward" =~ ["y"|"Y"] || -z $ansModernFarward ]]; then
mkdir /opt/minecraft/config
mv data/pcf-common.toml /opt/minecraft/config/
fi
fi
# adds aditional mods
if [[ "$ansSkinRestorer" =~ ["y"|"Y"] || -z $ansSkinRestorer ]]; then
mv data/skinrestorer-forge*.jar /opt/minecraft/mods/
fi fi
### Permisions ### ### Permisions ###