Compare commits
2 commits
65ea59f485
...
bf90abfc2d
Author | SHA1 | Date | |
---|---|---|---|
bf90abfc2d | |||
845ad2d53c |
3 changed files with 17 additions and 7 deletions
|
@ -59,10 +59,12 @@ if [ -e /server.tar.zstd ]; then
|
|||
tar -C / --zstd --overwrite -x -f /server.tar.zstd
|
||||
fi
|
||||
|
||||
if [ $VERSION ]; then
|
||||
# find the latest release of the requested version and download it
|
||||
echo "downloading minecraft $VERSION..."
|
||||
RELEASE=`curl -s https://api.papermc.io/v2/projects/paper/versions/$VERSION/ | jq -r .builds[-1]`
|
||||
curl https://api.papermc.io/v2/projects/paper/versions/$VERSION/builds/$RELEASE/downloads/paper-$VERSION-$RELEASE.jar -o /srv/minecraft/server/paperclip.jar
|
||||
fi
|
||||
|
||||
mkdir /home/mc/.ssh
|
||||
cp /root/.ssh/authorized_keys /home/mc/.ssh/authorized_keys
|
||||
|
|
10
deploy.sh
10
deploy.sh
|
@ -8,6 +8,7 @@ reigon="sfo3"
|
|||
|
||||
|
||||
config get
|
||||
data_dir get
|
||||
keys check
|
||||
machine create
|
||||
machine show ipv4 | jq -r .ip_address | read ipv4_address
|
||||
|
@ -24,7 +25,15 @@ if [ $DOMAIN ]; then
|
|||
domain A create
|
||||
fi
|
||||
|
||||
if [ -f "$data_dir/server.tar.zstd" ]; then
|
||||
echo "Would you like to install a new server jar?"
|
||||
if yes; then
|
||||
versionprompt
|
||||
fi
|
||||
else
|
||||
versionprompt
|
||||
fi
|
||||
|
||||
echo -n "Waiting for machine to respond"
|
||||
# tests if ssh is up, waiting one second between attempts
|
||||
until nc $ipv4_address 22 <<<'' 2> /dev/null | grep -q 'SSH'; do
|
||||
|
@ -33,7 +42,6 @@ until nc $ipv4_address 22 <<<'' 2> /dev/null | grep -q 'SSH'; do
|
|||
done
|
||||
echo
|
||||
|
||||
data_dir get
|
||||
|
||||
if [ -f "$data_dir/server.tar.zstd" ]; then
|
||||
echo "Uploading server backup..."
|
||||
|
|
|
@ -7,6 +7,6 @@ config get
|
|||
machine show ipv4 | jq -r .ip_address | read ipv4_address
|
||||
ssh root@$ipv4_address <<<mc-backup > "$data_dir/server.tar.zstd"
|
||||
if [ $DOMAIN ]; then
|
||||
domain A destroy
|
||||
domain A delete
|
||||
fi
|
||||
machine destroy
|
||||
|
|
Loading…
Add table
Reference in a new issue