Skip to content

Commit f7a1258

Browse files
committed
fix(jbep3): add distro deps entries and game icon
1 parent 0396f24 commit f7a1258

26 files changed

Lines changed: 222 additions & 1 deletion
Lines changed: 198 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,198 @@
1+
##################################
2+
######## Default Settings ########
3+
##################################
4+
# DO NOT EDIT, ANY CHANGES WILL BE OVERWRITTEN!
5+
# Copy settings from here and use them in either:
6+
# common.cfg - applies settings to every instance.
7+
# [instance].cfg - applies settings to a specific instance.
8+
9+
#### Game Server Settings ####
10+
11+
## Predefined Parameters | https://docs.linuxgsm.com/configuration/start-parameters
12+
ip="0.0.0.0"
13+
port="27015"
14+
clientport="27005"
15+
sourcetvport="27020"
16+
defaultmap="crossfire"
17+
maxplayers="24"
18+
19+
## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
20+
startparameters="-game jbep3 -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}"
21+
22+
#### LinuxGSM Settings ####
23+
24+
## LinuxGSM Stats
25+
# Send useful stats to LinuxGSM developers.
26+
# https://docs.linuxgsm.com/configuration/linuxgsm-stats
27+
# (on|off)
28+
stats="off"
29+
30+
## Notification Alerts
31+
# (on|off)
32+
33+
# Display IP | https://docs.linuxgsm.com/alerts#display-ip
34+
displayip=""
35+
36+
# More info | https://docs.linuxgsm.com/alerts#more-info
37+
postalert="off"
38+
39+
# Alert on Start/Stop/Restart
40+
statusalert="off"
41+
42+
# Discord Alerts | https://docs.linuxgsm.com/alerts/discord
43+
discordalert="off"
44+
discordwebhook="webhook"
45+
46+
# Email Alerts | https://docs.linuxgsm.com/alerts/email
47+
emailalert="off"
48+
email="email@example.com"
49+
emailfrom=""
50+
51+
# Gotify Alerts | https://docs.linuxgsm.com/alerts/gotify
52+
gotifyalert="off"
53+
gotifytoken="token"
54+
gotifywebhook="webhook"
55+
56+
# IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt
57+
iftttalert="off"
58+
ifttttoken="accesstoken"
59+
iftttevent="linuxgsm_alert"
60+
61+
# ntfy Alerts | https://docs.linuxgsm.com/alerts/ntfy
62+
ntfyalert="off"
63+
ntfytopic="LinuxGSM"
64+
ntfyserver="https://ntfy.sh"
65+
ntfytoken=""
66+
ntfyusername=""
67+
ntfypassword=""
68+
ntfypriority=""
69+
ntfytags=""
70+
71+
# Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
72+
pushbulletalert="off"
73+
pushbullettoken="accesstoken"
74+
channeltag=""
75+
76+
# Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover
77+
pushoveralert="off"
78+
pushovertoken="accesstoken"
79+
pushoveruserkey="userkey"
80+
81+
# Rocket.Chat Alerts | https://docs.linuxgsm.com/alerts/rocket.chat
82+
rocketchatalert="off"
83+
rocketchatwebhook="webhook"
84+
85+
# Slack Alerts | https://docs.linuxgsm.com/alerts/slack
86+
slackalert="off"
87+
slackwebhook="webhook"
88+
89+
# Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram
90+
# You can add a custom cURL string eg proxy (useful in Russia) in "curlcustomstring".
91+
# For example "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help all".
92+
telegramapi="api.telegram.org"
93+
telegramalert="off"
94+
telegramtoken="accesstoken"
95+
telegramchatid=""
96+
telegramthreadid=""
97+
telegramsilentnotification="false"
98+
curlcustomstring=""
99+
100+
## Updating | https://docs.linuxgsm.com/commands/update
101+
updateonstart="off"
102+
103+
## Backup | https://docs.linuxgsm.com/commands/backup
104+
maxbackups="4"
105+
maxbackupdays="30"
106+
stoponbackup="on"
107+
108+
## Logging | https://docs.linuxgsm.com/features/logging
109+
consolelogging="on"
110+
logdays="7"
111+
112+
## Monitor | https://docs.linuxgsm.com/commands/monitor
113+
# Query delay time
114+
querydelay="1"
115+
116+
## ANSI Colors | https://docs.linuxgsm.com/features/ansi-colors
117+
ansi="on"
118+
119+
#### Advanced Settings ####
120+
121+
## Message Display Time | https://docs.linuxgsm.com/features/message-display-time
122+
sleeptime="0.5"
123+
124+
## SteamCMD Settings | https://docs.linuxgsm.com/steamcmd
125+
# Server appid
126+
appid="869800"
127+
steamcmdforcewindows="no"
128+
# SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch
129+
branch=""
130+
betapassword=""
131+
# Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server
132+
steammaster="true"
133+
134+
## Stop Mode | https://docs.linuxgsm.com/features/stop-mode
135+
# 1: tmux kill
136+
# 2: CTRL+c
137+
# 3: quit
138+
# 4: quit 120s
139+
# 5: stop
140+
# 6: q
141+
# 7: exit
142+
# 8: 7 Days to Die
143+
# 9: GoldSrc
144+
# 10: Avorion
145+
# 11: end
146+
stopmode="3"
147+
148+
## Query mode
149+
# 1: session only
150+
# 2: gamedig (gsquery fallback)
151+
# 3: gamedig
152+
# 4: gsquery
153+
# 5: tcp
154+
querymode="2"
155+
querytype="protocol-valve"
156+
157+
## Console type
158+
consoleverbose="yes"
159+
consoleinteract="yes"
160+
161+
## Game Server Details
162+
# Do not edit
163+
gamename="Jabroni Brawl: Episode 3"
164+
engine="source"
165+
glibc="2.3.6"
166+
167+
#### Directories ####
168+
# Edit with care
169+
170+
## Game Server Directories
171+
systemdir="${serverfiles}/jbep3"
172+
executabledir="${serverfiles}"
173+
executable="./srcds_run.sh"
174+
servercfgdir="${systemdir}/cfg"
175+
servercfg="${selfname}.cfg"
176+
servercfgdefault="server.cfg"
177+
servercfgfullpath="${servercfgdir}/${servercfg}"
178+
179+
## Backup Directory
180+
backupdir="${lgsmdir}/backup"
181+
182+
## Logging Directories
183+
[ -n "${LGSM_LOGDIR}" ] && logdir="${LGSM_LOGDIR}" || logdir="${rootdir}/log"
184+
gamelogdir="${systemdir}/logs"
185+
lgsmlogdir="${logdir}/script"
186+
consolelogdir="${logdir}/console"
187+
lgsmlog="${lgsmlogdir}/${selfname}-script.log"
188+
consolelog="${consolelogdir}/${selfname}-console.log"
189+
alertlog="${lgsmlogdir}/${selfname}-alert.log"
190+
postdetailslog="${lgsmlogdir}/${selfname}-postdetails.log"
191+
192+
## Logs Naming
193+
lgsmlogdate="${lgsmlogdir}/${selfname}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
194+
consolelogdate="${consolelogdir}/${selfname}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
195+
196+
## Log Parameters
197+
logtimestamp="off"
198+
logtimestampformat="%Y-%m-%d %H:%M:%S"

lgsm/data/almalinux-8.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/almalinux-9.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/centos-7.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/centos-8.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/centos-9.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/debian-10.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ hz
5757
ins
5858
inss
5959
ios
60+
jbep3
6061
jc2
6162
jc3
6263
jk2

lgsm/data/debian-11.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/debian-12.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

lgsm/data/debian-13.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hz
5858
ins
5959
inss
6060
ios
61+
jbep3
6162
jc2
6263
jc3
6364
jk2

0 commit comments

Comments
 (0)