-
-
Notifications
You must be signed in to change notification settings - Fork 821
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(newserver): add Xonotic (#4633)
* Adding default_cfg and Distro Requirements * Adding Shellscripts for Xonotic * Fixing serverlist.csv * Fixing again serverlist.csv * Fixed Typo * Changing Shortname to XNT * Fixing missed _default.cfg change * Fixing _default.cfg * Updating Modules and Server installation * Updating paths and install script * Fixing install Scripts Issues * Update info_game.sh * Updating Game Info Curling * fix bug with npm download of gamedig on branches * styling fix * move to fix * typo * bug * add missing details * edit using config * add missing servercfgfullpath * bug * config settings update * update cp command based off warn message * fix dir * update dirs * fix exit code * fix dir install * remove -v * update settings * update info game * update config type * fix dir * update config parsing * change to remove config * add server.cfg * remove serverconfigdefault * add new default * move to use an updater * send key to update function * typo * change extract location * update directory location * filename fix * update dirs * fix extraction * creatre datadir if missing * consoleinteract yes * lint --------- Co-authored-by: Stephan Schaffner <stephan.schaffner@check24.de> Co-authored-by: Daniel Gibbs <me@danielgibbs.co.uk>
- Loading branch information
1 parent
b2a4f60
commit ce27b73
Showing
35 changed files
with
515 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,171 @@ | ||
################################## | ||
######## Default Settings ######## | ||
################################## | ||
# DO NOT EDIT, ANY CHANGES WILL BE OVERWRITTEN! | ||
# Copy settings from here and use them in either: | ||
# common.cfg - applies settings to every instance. | ||
# [instance].cfg - applies settings to a specific instance. | ||
|
||
#### Game Server Settings #### | ||
|
||
## Predefined Parameters | https://docs.linuxgsm.com/configuration/start-parameters | ||
|
||
## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters | ||
startparameters="-userdir ${systemdir}/${selfname}" | ||
|
||
#### LinuxGSM Settings #### | ||
|
||
## LinuxGSM Stats | ||
# Send useful stats to LinuxGSM developers. | ||
# https://docs.linuxgsm.com/configuration/linuxgsm-stats | ||
# (on|off) | ||
stats="off" | ||
|
||
## Notification Alerts | ||
# (on|off) | ||
|
||
# Display IP | https://docs.linuxgsm.com/alerts#display-ip | ||
displayip="" | ||
|
||
# More info | https://docs.linuxgsm.com/alerts#more-info | ||
postalert="off" | ||
|
||
# Alert on Start/Stop/Restart | ||
statusalert="off" | ||
|
||
# Discord Alerts | https://docs.linuxgsm.com/alerts/discord | ||
discordalert="off" | ||
discordwebhook="webhook" | ||
|
||
# Email Alerts | https://docs.linuxgsm.com/alerts/email | ||
emailalert="off" | ||
email="email@example.com" | ||
emailfrom="" | ||
|
||
# Gotify Alerts | https://docs.linuxgsm.com/alerts/gotify | ||
gotifyalert="off" | ||
gotifytoken="token" | ||
gotifywebhook="webhook" | ||
|
||
# IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt | ||
iftttalert="off" | ||
ifttttoken="accesstoken" | ||
iftttevent="linuxgsm_alert" | ||
|
||
# Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet | ||
pushbulletalert="off" | ||
pushbullettoken="accesstoken" | ||
channeltag="" | ||
|
||
# Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover | ||
pushoveralert="off" | ||
pushovertoken="accesstoken" | ||
pushoveruserkey="userkey" | ||
|
||
# Rocket.Chat Alerts | https://docs.linuxgsm.com/alerts/rocket.chat | ||
rocketchatalert="off" | ||
rocketchatwebhook="webhook" | ||
|
||
# Slack Alerts | https://docs.linuxgsm.com/alerts/slack | ||
slackalert="off" | ||
slackwebhook="webhook" | ||
|
||
# Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram | ||
# You can add a custom cURL string eg proxy (useful in Russia) in "curlcustomstring". | ||
# For example "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help all". | ||
telegramapi="api.telegram.org" | ||
telegramalert="off" | ||
telegramtoken="accesstoken" | ||
telegramchatid="" | ||
telegramthreadid="" | ||
telegramsilentnotification="false" | ||
curlcustomstring="" | ||
|
||
## Backup | https://docs.linuxgsm.com/commands/backup | ||
maxbackups="4" | ||
maxbackupdays="30" | ||
stoponbackup="on" | ||
|
||
## Logging | https://docs.linuxgsm.com/features/logging | ||
consolelogging="on" | ||
logdays="7" | ||
|
||
## Monitor | https://docs.linuxgsm.com/commands/monitor | ||
# Query delay time | ||
querydelay="1" | ||
|
||
## ANSI Colors | https://docs.linuxgsm.com/features/ansi-colors | ||
ansi="on" | ||
|
||
#### Advanced Settings #### | ||
|
||
## Message Display Time | https://docs.linuxgsm.com/features/message-display-time | ||
sleeptime="0.5" | ||
|
||
## Stop Mode | https://docs.linuxgsm.com/features/stop-mode | ||
# 1: tmux kill | ||
# 2: CTRL+c | ||
# 3: quit | ||
# 4: quit 120s | ||
# 5: stop | ||
# 6: q | ||
# 7: exit | ||
# 8: 7 Days to Die | ||
# 9: GoldSrc | ||
# 10: Avorion | ||
# 11: end | ||
stopmode="2" | ||
|
||
## Query mode | ||
# 1: session only | ||
# 2: gamedig (gsquery fallback) | ||
# 3: gamedig | ||
# 4: gsquery | ||
# 5: tcp | ||
querymode="3" | ||
querytype="xonotic" | ||
|
||
## Console type | ||
consoleverbose="yes" | ||
consoleinteract="yes" | ||
|
||
## Game Server Details | ||
# Do not edit | ||
gamename="Xonotic" | ||
engine="unreal3" | ||
glibc="2.29" | ||
|
||
#### Directories #### | ||
# Edit with care | ||
|
||
## Game Server Directories | ||
systemdir="${serverfiles}" | ||
executabledir="${systemdir}" | ||
executable="./xonotic-linux64-dedicated" | ||
servercfgdir="${systemdir}/${selfname}/data" | ||
servercfg="server.cfg" | ||
servercfgdefault="${systemdir}/server.cfg" | ||
servercfgfullpath="${servercfgdir}/${servercfg}" | ||
|
||
## Backup Directory | ||
backupdir="${lgsmdir}/backup" | ||
|
||
## Logging Directories | ||
[ -n "${LGSM_LOGDIR}" ] && logdir="${LGSM_LOGDIR}" || logdir="${rootdir}/log" | ||
gamelogdir="${logdir}/server" | ||
lgsmlogdir="${logdir}/script" | ||
consolelogdir="${logdir}/console" | ||
gamelog="${gamelogdir}/${selfname}-game.log" | ||
lgsmlog="${lgsmlogdir}/${selfname}-script.log" | ||
consolelog="${consolelogdir}/${selfname}-console.log" | ||
alertlog="${lgsmlogdir}/${selfname}-alert.log" | ||
postdetailslog="${lgsmlogdir}/${selfname}-postdetails.log" | ||
|
||
## Logs Naming | ||
lgsmlogdate="${lgsmlogdir}/${selfname}-script-$(date '+%Y-%m-%d-%H:%M:%S').log" | ||
consolelogdate="${consolelogdir}/${selfname}-console-$(date '+%Y-%m-%d-%H:%M:%S').log" | ||
gamelogdate="${gamelogdir}/${selfname}-game-$(date '+%Y-%m-%d-%H:%M:%S').log" | ||
|
||
## Log Parameters | ||
logtimestamp="off" | ||
logtimestampformat="%Y-%m-%d %H:%M:%S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-21-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-21-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-11-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-17-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-17-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-11-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-17-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-17-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,5 +133,6 @@ wet | |
wf | ||
wmc,openjdk21-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-8-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-11-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-21-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-21-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-21-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,java-21-openjdk | ||
wurm,xorg-x11-server-Xvfb | ||
xnt | ||
zmr,ncurses-libs.i686 | ||
zps,ncurses-libs.i686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-8-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-11-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-21-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-21-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-21-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-21-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,5 +134,6 @@ wet | |
wf | ||
wmc,openjdk-21-jre | ||
wurm,xvfb | ||
xnt | ||
zmr,libtinfo5:i386 | ||
zps,libtinfo5:i386 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.