Rebase modupdater (#267)

Based on work from https://github.com/ALovedOne and https://github.com/patschi
This commit is contained in:
Sandro Jäckel
2019-07-04 00:34:09 +02:00
committed by Florian Kinder
parent 4ba56ee010
commit 28598a42a3
6 changed files with 122 additions and 4 deletions

View File

@ -0,0 +1,17 @@
#!/bin/bash
if [[ -f /run/secrets/username ]]; then
USERNAME=$(cat /run/secrets/username)
fi
if [[ -f /run/secrets/username ]]; then
TOKEN=$(cat /run/secrets/token)
fi
if [[ -z $TOKEN ]]; then
set -- "$(jq -j ".username, \" \", .token" "$CONFIG/server-settings.json")"
USERNAME=$1
TOKEN=$2
fi
./update-mods.sh "$VERSION" "$MODS" "$USERNAME" "$TOKEN"