buildpack/bin/start

31 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-05-25 16:49:13 +00:00
#!/bin/bash
mkdir -p crash-reports/ dumps/
echo "$PRIVATE_KEY" > .ssh/id_rsa
2018-07-11 03:52:20 +00:00
chmod 400 $(find . ! -path "*/.*" -type f)
2018-06-10 14:01:27 +00:00
chmod -R 500 crash-reports/ dumps/ plugins/bStats/ plugins/PluginMetrics/ plugins/ProtocolLib/ plugins/Updater/
2018-09-30 15:14:53 +00:00
rsync -Waqz -e "ssh -o StrictHostKeyChecking=no -T -c aes256-ctr -o Compression=no -x" serv@kaboom.pw:sync/plugins/WorldEdit/schematics plugins/WorldEdit/
2018-05-25 16:49:13 +00:00
2018-09-30 15:09:01 +00:00
while true; do
2018-09-30 15:14:53 +00:00
rsync -Waq -e "ssh -o StrictHostKeyChecking=no -T -c aes256-ctr -o Compression=no -x" plugins/WorldEdit/schematics serv@kaboom.pw:sync/plugins/WorldEdit/ > /dev/null 2>&1
2018-09-30 15:09:01 +00:00
sleep 5
done &
2018-05-25 16:49:13 +00:00
2018-06-10 09:27:51 +00:00
while true; do
2018-07-11 16:59:26 +00:00
ssh -o StrictHostKeyChecking=no -S none -N -T -R 64518:localhost:25565 serv@kaboom.pw > /dev/null 2>&1
2018-06-10 09:27:51 +00:00
sleep 1
done &
2018-09-30 21:09:50 +00:00
while true; do
2018-09-30 21:45:14 +00:00
if [ "$(echo -n -e '\xFE' | nc localhost 25565 | wc -m)" -eq 0 ]; then
2018-09-30 21:09:50 +00:00
.bin/tmux kill-session -t server
2018-10-01 11:34:08 +00:00
.bin/tmux new -d -s server 'while true; do
.bin/java/bin/java -Xmx400M -Xss512k -Xaggressive -Xdisablejavadump -Xnoagent -Xtune:virtualized -XX:MaxMetaspaceSize=100M -XX:MaxDirectMemorySize=50M -XX:-HeapDumpOnOutOfMemoryError -XX:+IdleTuningGcOnIdle -XX:+UseContainerSupport -Dcom.mojang.eula.agree=true -jar minecraft-server.jar --world-dir=worlds
sleep 1
done'
2018-09-30 21:09:50 +00:00
fi
2018-10-01 11:34:08 +00:00
sleep 120
2018-09-30 21:09:50 +00:00
done &
2018-05-25 16:49:13 +00:00
2018-06-10 05:22:56 +00:00
sleep infinity