#!/bin/bash # Collection of scripts to deploy a server hosting several open-source games # Copyright (C) 2022 Jarno van der Kolk # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published # by the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . set -e if [ -e /etc/systemd/system/teeworlds.service ]; then systemctl stop teeworlds fi if [ -z ${teeworlds_version} ] || [ "${teeworlds_version}" = "latest" ]; then teeworlds_version=$(curl -s https://api.github.com/repos/teeworlds/teeworlds/releases/latest | jq -r '.["tag_name"]') fi # Teeworlds teeworld_directory="/opt/teeworlds-${teeworlds_version}" mkdir -p ${teeworld_directory} curl --location "https://github.com/teeworlds/teeworlds/releases/download/${teeworlds_version}/teeworlds-${teeworlds_version}-linux_x86_64.tar.gz" | tar --extract --gzip --no-same-owner --strip-components=1 --directory="${teeworld_directory}" cat > /etc/teeworlds.cfg < /etc/teedm.cfg < /etc/teetdm.cfg < /etc/teectf.cfg < /etc/systemd/system/teeworlds.service < /etc/systemd/system/teeworlds-rcon.service < /etc/nginx/gameserver.d/teeworlds.conf <