Private key system

This commit is contained in:
mathias 2018-05-25 20:01:08 +03:00
parent 3e6a7f5771
commit 91fb5531a0

View file

@ -1,9 +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
$PRIVATE_KEY >> id_rsa
chmod -R 500 crash-reports/ dumps/ plugins/bStats/ plugins/PluginMetrics/ plugins/ProtocolLib/ plugins/Updater/
chmod 400 'find . -type f'
rsync -avz -e "ssh -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" connect@kaboom.pw:/home/connect/sync/ .
rsync -avz -e "ssh -i id_rsa -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" connect@kaboom.pw:/home/connect/sync/ .
if [ ! -d worlds/ ]; then
cp -r reset/worlds/ .
@ -14,12 +15,12 @@ fi
while true; do
bin/inotifywait -r -e modify,attrib,close_write,move,create,delete .
rsync -avz -e "ssh -o StrictHostKeyChecking=no" --exclude-from="bin/excludes" plugins worlds connect@kaboom.pw:/home/connect/sync/ > /dev/null 2>&1
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
sleep 1
done &
while true; do
ssh -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 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
sleep 1
done &