#!/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-ddrace.service ]; then systemctl stop teeworlds fi # Teeworlds teeworldsddrace_directory="/opt/teeworlds-ddrace-${teeworldsddrace_version}" mkdir -p "${teeworldsddrace_directory}" curl --location "https://ddnet.tw/downloads/DDNet-${teeworldsddrace_version}-linux_x86_64.tar.xz" | tar --extract --xz --no-same-owner --strip-components=1 --directory="${teeworldsddrace_directory}" curl --location "https://maps.ddnet.tw/compilations/novice.zip" > ${TMPDIR:/tmp}/novice.zip unzip -o -d "${teeworldsddrace_directory}"/data/maps ${TMPDIR:/tmp}/novice.zip for f in "${teeworldsddrace_directory}"/data/maps/novice/maps/*.map; do "${teeworldsddrace_directory}"/map_convert_07 "$f" "`echo "$f" | sed s/"maps\/novice\/maps"/"maps7"/g`" cp "$f" "${teeworldsddrace_directory}"/data/maps done rm -rf "${teeworldsddrace_directory}"/data/maps/novice cat > "${teeworldsddrace_directory}"/data/myServerconfig.cfg < /etc/systemd/system/teeworlds-ddrace.service <