From 6b3524575b548261583d1ebf3632dd336c46cc55 Mon Sep 17 00:00:00 2001 From: mathias Date: Fri, 25 May 2018 20:58:09 +0300 Subject: [PATCH] Fixes --- bin/start | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/start b/bin/start index 3dbe11d..129729e 100755 --- a/bin/start +++ b/bin/start @@ -1,10 +1,10 @@ #!/bin/bash mkdir -p crash-reports/ dumps/ touch banned-ips.json banned-ips.json.backup banned-players.json banned-players.json.backup ops.json ops.json.backup usercache.json whitelist.json whitelist.json.backup -echo $PRIVATE_KEY >> id_rsa +echo "$PRIVATE_KEY" > .key chmod -R 500 crash-reports/ dumps/ plugins/bStats/ plugins/PluginMetrics/ plugins/ProtocolLib/ plugins/Updater/ chmod 400 'find . -type f' -rsync -avz -e "ssh -i id_rsa -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" connect@kaboom.pw:/home/connect/sync/ . +rsync -avz -e "ssh -i .key -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" connect@kaboom.pw:/home/connect/sync/ . if [ ! -d worlds/ ]; then cp -r reset/worlds/ . @@ -15,12 +15,12 @@ fi while true; do bin/inotifywait -r -e modify,attrib,close_write,move,create,delete . - rsync -avz -e "ssh -i id_rsa -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" plugins worlds connect@kaboom.pw:/home/connect/sync/ > /dev/null 2>&1 + rsync -avz -e "ssh -i .key -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" plugins worlds connect@kaboom.pw:/home/connect/sync/ > /dev/null 2>&1 sleep 1 done & while true; do - ssh -i id_rsa -o StrictHostKeyChecking=no -o ServerAliveInterval=30 -o ServerAliveCountMax=9999 -S none -T -R 25565:localhost:25565 connect@kaboom.pw > /dev/null 2>&1 + ssh -i .key -o StrictHostKeyChecking=no -o ServerAliveInterval=30 -o ServerAliveCountMax=9999 -S none -T -R 25565:localhost:25565 connect@kaboom.pw > /dev/null 2>&1 sleep 1 done &