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