Compare commits
4 commits
79226a01ca
...
154aa0359d
Author | SHA1 | Date | |
---|---|---|---|
154aa0359d | |||
6f8ada2978 | |||
3e7416f71c | |||
d54acd2d08 |
2 changed files with 91 additions and 35 deletions
26
automate.sh
26
automate.sh
|
@ -11,32 +11,6 @@ fi
|
||||||
echo "fetching..."
|
echo "fetching..."
|
||||||
apt install -y screen tar xz-utils curl jq #FIXME: this wont probably work on a system that has not run apt update for the first time
|
apt install -y screen tar xz-utils curl jq #FIXME: this wont probably work on a system that has not run apt update for the first time
|
||||||
|
|
||||||
# find the latest version of paper
|
|
||||||
LATEST=`curl -s https://papermc.io/api/v2/projects/paper/ | jq -r .versions[-1]`
|
|
||||||
printf "\n\n\n"
|
|
||||||
function versionprompt {
|
|
||||||
# ask the user which version of minecraft they would like to install
|
|
||||||
echo "which version of minecraft would you like to serve?"
|
|
||||||
echo -n "version [$LATEST]:"
|
|
||||||
if ! read -t 30 VERSION; then # have a timeout for user input handy for unattented installs
|
|
||||||
VERSION=$LATEST
|
|
||||||
echo "timed out, defaulting to $LATEST..."
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
if [ -n "$VERSION" ]; then # check if the user wrote anything
|
|
||||||
echo "probing..."
|
|
||||||
#validate user input
|
|
||||||
if ! curl -s https://papermc.io/api/v2/projects/paper/ | jq -r .versions | grep -q \"$VERSION\"; then
|
|
||||||
echo "we cant find that version! either its not supported or you made an error, trying again..."
|
|
||||||
versionprompt
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
VERSION=$LATEST
|
|
||||||
echo "defaulting to $LATEST..."
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
versionprompt
|
|
||||||
|
|
||||||
# this has to be seperate from the first run of apt since java versions before 16 is deprecated for minecraft 1.17 and before 17 for 1.18, and java versions before 21 for 1.21
|
# this has to be seperate from the first run of apt since java versions before 16 is deprecated for minecraft 1.17 and before 17 for 1.18, and java versions before 21 for 1.21
|
||||||
echo "installing java..."
|
echo "installing java..."
|
||||||
if printf '%s\n' 1.20.6 $VERSION | sort -VC; then # check if $VERSION is above 1.20.6
|
if printf '%s\n' 1.20.6 $VERSION | sort -VC; then # check if $VERSION is above 1.20.6
|
||||||
|
|
100
deploy.sh
100
deploy.sh
|
@ -2,6 +2,10 @@
|
||||||
# required for the complex pipes in the machine function
|
# required for the complex pipes in the machine function
|
||||||
shopt -s lastpipe
|
shopt -s lastpipe
|
||||||
|
|
||||||
|
#TODO: add these to config create, probably with a select menu or something
|
||||||
|
size="s-2vcpu-4gb"
|
||||||
|
reigon="sfo3"
|
||||||
|
|
||||||
config() {
|
config() {
|
||||||
local command="$1"; shift
|
local command="$1"; shift
|
||||||
|
|
||||||
|
@ -18,7 +22,7 @@ config() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
create)
|
create)
|
||||||
read -p "enter your DigialOcean API token: " TOKEN
|
read -p "Enter your DigialOcean API token: " TOKEN
|
||||||
# this parameter expands to nothing if unset, or x if it is.
|
# this parameter expands to nothing if unset, or x if it is.
|
||||||
if [ -z ${XDG_CONFIG_HOME+x} ]; then
|
if [ -z ${XDG_CONFIG_HOME+x} ]; then
|
||||||
mkdir -p "${HOME}/.config/auto-mc-redux"
|
mkdir -p "${HOME}/.config/auto-mc-redux"
|
||||||
|
@ -57,6 +61,16 @@ firewall(){
|
||||||
"name": "auto-mc",
|
"name": "auto-mc",
|
||||||
"tags":["auto-mc"],
|
"tags":["auto-mc"],
|
||||||
"inbound_rules": [
|
"inbound_rules": [
|
||||||
|
{
|
||||||
|
"protocol": "icmp",
|
||||||
|
"ports": "0",
|
||||||
|
"sources": {
|
||||||
|
"addresses": [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"protocol": "tcp",
|
"protocol": "tcp",
|
||||||
"ports": "25565",
|
"ports": "25565",
|
||||||
|
@ -78,6 +92,38 @@ firewall(){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
"outbound_rules": [
|
||||||
|
{
|
||||||
|
"protocol": "icmp",
|
||||||
|
"ports": "0",
|
||||||
|
"sources": {
|
||||||
|
"addresses": [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"protocol": "tcp",
|
||||||
|
"ports": "0",
|
||||||
|
"sources": {
|
||||||
|
"addresses": [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"protocol": "udp",
|
||||||
|
"ports": "0",
|
||||||
|
"sources": {
|
||||||
|
"addresses": [
|
||||||
|
"0.0.0.0/0",
|
||||||
|
"::/0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
json
|
json
|
||||||
;;
|
;;
|
||||||
|
@ -139,8 +185,8 @@ machine(){
|
||||||
-H 'Content-Type: application/json' \
|
-H 'Content-Type: application/json' \
|
||||||
-H "Authorization: Bearer $TOKEN" \
|
-H "Authorization: Bearer $TOKEN" \
|
||||||
-d '{"name":"auto-mc",
|
-d '{"name":"auto-mc",
|
||||||
"size":"s-2vcpu-4gb",
|
"size":"'$size'",
|
||||||
"region":"sfo2",
|
"region":"'$reigon'",
|
||||||
"image":"ubuntu-24-10-x64",
|
"image":"ubuntu-24-10-x64",
|
||||||
"ssh_keys":["'$fingerprint'"],
|
"ssh_keys":["'$fingerprint'"],
|
||||||
"tags":["auto-mc"]}' \
|
"tags":["auto-mc"]}' \
|
||||||
|
@ -184,15 +230,51 @@ machine(){
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
versionprompt() {
|
||||||
|
# ask the user which version of minecraft they would like to install
|
||||||
|
echo "Which version of minecraft would you like to serve?"
|
||||||
|
echo -n "Version [$latest]:"
|
||||||
|
# have a timeout for user input handy for unattented installs
|
||||||
|
if ! read -t 30 version; then
|
||||||
|
version=$latest
|
||||||
|
echo "Timed out, defaulting to $latest..."
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
if [ -n "$version" ]; then # check if the user wrote anything
|
||||||
|
echo "Probing..."
|
||||||
|
#validate user input
|
||||||
|
if ! curl -s https://api.papermc.io/v2/projects/paper/ |\
|
||||||
|
jq -r .versions | grep -q \"$version\"; then
|
||||||
|
echo "We cant find that version!"
|
||||||
|
echo "Either its not supported yet or you made an error, trying again..."
|
||||||
|
versionprompt
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
version=$latest
|
||||||
|
echo "Defaulting to $latest..."
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
config get
|
config get
|
||||||
keys check
|
keys check
|
||||||
machine create
|
machine create
|
||||||
#if ! firewall check; then
|
|
||||||
# firewall create
|
|
||||||
#else
|
|
||||||
# echo "Firewall rule already exists"
|
|
||||||
#fi
|
|
||||||
machine show ipv4 | jq .ip_address | read ipv4_address
|
machine show ipv4 | jq .ip_address | read ipv4_address
|
||||||
echo "Machine created at $ipv4_address!"
|
echo "Machine created at $ipv4_address!"
|
||||||
#
|
if ! firewall check; then
|
||||||
|
firewall create
|
||||||
|
else
|
||||||
|
echo "Firewall rule already exists"
|
||||||
|
fi
|
||||||
|
|
||||||
|
latest=`curl -s https://api.papermc.io/v2/projects/paper/ | jq -r .versions[-1]`
|
||||||
|
versionprompt
|
||||||
|
echo "Waiting for machine to respond"
|
||||||
|
# send pings every second, waiting for 1 second
|
||||||
|
until ping -w 1 -c 1 $ip_address >/dev/null 2>&1; do
|
||||||
|
echo -n '.'
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
|
||||||
|
cat <(cat <(echo VERSION=$version) ./automate.sh)
|
||||||
|
|
||||||
#machine destroy
|
#machine destroy
|
||||||
|
|
Loading…
Add table
Reference in a new issue