Skip to content

Instantly share code, notes, and snippets.

View HannesMrg's full-sized avatar

Hannes Morgenroth HannesMrg

View GitHub Profile
@ferdinandkeller
ferdinandkeller / update.sh
Last active February 12, 2024 21:48
Bash script to automatically and smartly update PaperMC whenever a new version is available. You need to install `jq` and `wget`.
#!/bin/bash
# set a target minecraft major version
target_mc_version=1.19
# retrieve the latest minecraft minor version
latest_mc_version=$(curl "https://api.papermc.io/v2/projects/paper" | jq -r '[.versions[] | select(. | test("^'$target_mc_version'"))] | last')
# retrieve the matching latest paper version
latest_paper_version=$(curl "https://api.papermc.io/v2/projects/paper/versions/${latest_mc_version}" | jq -r '[.builds[]] | last')

Introduction

Tdarr is a . The setup/install docs are mostly alright as a guide to figure out how to install for Linux, but I found some specific quirks when installing on Debian that I wanted to document.

These instructions were used to install on Debian 11,, specifically in a vm hosted using kvm on proxmox.

Operating System: Debian GNU/Linux bullseye/sid
          Kernel: Linux 5.9.0-5-amd64
    Architecture: x86-64