From 290066dd4f3cc0f5758ab370d1c9c47e3c4be595 Mon Sep 17 00:00:00 2001 From: softwarenoob Date: Thu, 3 Feb 2022 22:08:47 +0200 Subject: [PATCH] fix(rust): use direct github releases link for umod Umod being under attack with Cloudflare causes a failed install for every single server that's running Rust, thus breaking them. Use direct Github release instead, which the old link was a redirect to. Co-authored-by Dennis <70665154+dennisrijsdijk@users.noreply.github.com> --- games/rust/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/rust/entrypoint.sh b/games/rust/entrypoint.sh index b179f05..2780d41 100644 --- a/games/rust/entrypoint.sh +++ b/games/rust/entrypoint.sh @@ -14,7 +14,7 @@ echo ":/home/container$ ${MODIFIED_STARTUP}" # OxideMod has been replaced with uMod if [ -f OXIDE_FLAG ] || [ "${OXIDE}" = 1 ] || [ "${UMOD}" = 1 ]; then echo "Updating uMod..." - curl -sSL "https://umod.org/games/rust/download/develop" > umod.zip + curl -sSL "https://github.com/OxideMod/Oxide.Rust/releases/latest/download/Oxide.Rust-linux.zip" > umod.zip unzip -o -q umod.zip rm umod.zip echo "Done updating uMod!"