From 8a396e383bdeb64e5a27bf7e7bc296437e79fb03 Mon Sep 17 00:00:00 2001 From: DeathByDenim Date: Mon, 19 Sep 2022 08:54:13 -0400 Subject: [PATCH] Added UFO:AI --- deploy.sh | 1 + scripts/deploy_ufoai.sh | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100755 scripts/deploy_ufoai.sh diff --git a/deploy.sh b/deploy.sh index 40e6ac4..5794dae 100755 --- a/deploy.sh +++ b/deploy.sh @@ -103,6 +103,7 @@ cp console2web/console2web.py /usr/bin/console2web "$(dirname "$0")"/scripts/deploy_armagetron_advanced.sh "$(dirname "$0")"/scripts/deploy_opensoldat.sh "$(dirname "$0")"/scripts/deploy_supertuxparty.sh +"$(dirname "$0")"/scripts/deploy_ufoai.sh # Apply all pending firewall rules. NGINX shouldn't have to be restarted, but it seems to help. firewall-cmd --reload diff --git a/scripts/deploy_ufoai.sh b/scripts/deploy_ufoai.sh new file mode 100755 index 0000000..baa5798 --- /dev/null +++ b/scripts/deploy_ufoai.sh @@ -0,0 +1,32 @@ +#!/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 /lib/systemd/system/ufoai-server.service ]; then + systemctl stop ufoai-server +fi + +apt install --assume-yes ufoai-server + +echo "set rcon_password ${systempassword}" >> /etc/ufoai-server/server.cfg +sed -i -e 's/set sv_hostname.*/set sv_hostname "onFOSS-LAN"/' /etc/ufoai-server/server.cfg + +systemctl restart ufoai-server.service + +# Add firewall rules +firewall-cmd --zone=public --add-port=27910/tcp --permanent