Skip to content

Commit bc6ae39

Browse files
committed
Merge branch 'release/v23.2.0' into develop
2 parents a69825a + 26e753b commit bc6ae39

File tree

10 files changed

+26
-26
lines changed

10 files changed

+26
-26
lines changed

.vscode/extensions.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"recommendations": [
3-
"ms-python.python",
4-
"editorconfig.editorconfig",
5-
"yzhang.markdown-all-in-one",
6-
"esbenp.prettier-vscode",
7-
"timonwong.shellcheck",
8-
"foxundermoon.shell-format",
9-
"redhat.vscode-yaml"
10-
]
2+
"recommendations": [
3+
"ms-python.python",
4+
"editorconfig.editorconfig",
5+
"yzhang.markdown-all-in-one",
6+
"esbenp.prettier-vscode",
7+
"timonwong.shellcheck",
8+
"foxundermoon.shell-format",
9+
"redhat.vscode-yaml"
10+
]
1111
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center">
22
<a href="https://linuxgsm.com"><img src="https://i.imgur.com/Eoh1jsi.jpg" alt="LinuxGSM">
33
<a href="https://www.codacy.com/gh/GameServerManagers/LinuxGSM/dashboard"><img src="https://img.shields.io/codacy/grade/d19c5234dc3743d8a8a14093711ca52d?style=flat-square&logo=codacy&logoColor=white" alt="Codacy grade"></a>
4-
<a href="https://bitbucket.org/GameServerManagers/linuxgsm"><img alt="GitHub Workflow Status" src="https://img.shields.io/github/workflow/status/GameServerManagers/LinuxGSM/Github%20to%20Bitbucket%20sync?color=%230052CC&label=Backup&logo=bitbucket&style=flat-square"></a>
4+
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/GameServerManagers/LinuxGSM/git-sync.yml?color=0052CC&logo=bitbucket&style=flat-square">
55
<a href="https://linuxgsm.com/discord"><img alt="Discord" src="https://img.shields.io/discord/127498813903601664?color=5865F2&label=%20&logo=discord&logoColor=ffffff&style=flat-square"></a>
66
<a href="https://developer.valvesoftware.com/wiki/SteamCMD"><img src="https://img.shields.io/badge/SteamCMD-000000?style=flat-square&amp;logo=Steam&amp;logoColor=white" alt="SteamCMD"></a>
77
<a href="https://github.com/GameServerManagers/LinuxGSM/blob/main/LICENSE"><img src="https://img.shields.io/github/license/gameservermanagers/LinuxGSM?style=flat-square" alt="MIT License"></a>

lgsm/functions/check_ip.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ info_game.sh
1212

1313
ip_commands_array=("/bin/ip" "/usr/sbin/ip" "ip")
1414
for ip_command in "${ip_commands_array[@]}"; do
15-
if [ "$(command -v ${ip_command} 2> /dev/null)" ]; then
15+
if [ "$(command -v "${ip_command}" 2> /dev/null)" ]; then
1616
ipcommand="${ip_command}"
1717
break
1818
fi
1919
done
2020

2121
ethtool_commands_array=("/bin/ethtool" "/usr/sbin/ethtool" "ethtool")
2222
for ethtool_command in "${ethtool_commands_array[@]}"; do
23-
if [ "$(command -v ${ethtool_command} 2> /dev/null)" ]; then
23+
if [ "$(command -v "${ethtool_command}" 2> /dev/null)" ]; then
2424
ethtoolcommand="${ethtool_command}"
2525
break
2626
fi
@@ -38,25 +38,25 @@ function fn_is_valid_ip() {
3838

3939
# If the IP variable has been set by user.
4040
if fn_is_valid_ip "${ip}"; then
41-
queryips=( "${ip}" )
42-
webadminip=( "${ip}" )
43-
telnetip=( "${ip}" )
41+
queryips=("${ip}")
42+
webadminip=("${ip}")
43+
telnetip=("${ip}")
4444
# If game config does have an IP set.
45-
elif fn_is_valid_ip "${configip}";then
46-
queryips=( "${configip}" )
45+
elif fn_is_valid_ip "${configip}"; then
46+
queryips=("${configip}")
4747
ip="${configip}"
4848
webadminip=("${configip}")
4949
telnetip=("${configip}")
5050
# If there is only 1 server IP address.
5151
# Some IP details can automaticly use the one IP
5252
elif [ "${#current_ips[@]}" == "1" ]; then
53-
queryips=( "127.0.0.1" "${current_ips[@]}" )
53+
queryips=("127.0.0.1" "${current_ips[@]}")
5454
ip="0.0.0.0"
5555
webadminip=("${current_ips[@]}")
5656
telnetip=("${current_ips[@]}")
5757
# If no ip is set by the user and server has more than one IP.
5858
else
59-
queryips=( "127.0.0.1" "${current_ips[@]}" )
59+
queryips=("127.0.0.1" "${current_ips[@]}")
6060
ip="0.0.0.0"
6161
webadminip=("${ip}")
6262
telnetip=("${ip}")

lgsm/functions/command_monitor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ fn_monitor_check_queryport() {
7272
fn_print_dots "Checking port: "
7373
fn_print_checking_eol
7474
fn_script_log_info "Checking port: CHECKING"
75-
if [ -n "${rconenabled}" ] && [ "${rconenabled}" != "true" ] && [ ${shortname} == "av" ]; then
75+
if [ -n "${rconenabled}" ] && [ "${rconenabled}" != "true" ] && [ "${shortname}" == "av" ]; then
7676
fn_print_warn "Checking port: Unable to query, rcon is not enabled"
7777
fn_script_log_warn "Checking port: Unable to query, rcon is not enabled"
7878
else

lgsm/functions/core_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1010

11-
modulesversion="v23.1.0"
11+
modulesversion="v23.2.0"
1212

1313
# Core
1414

linuxgsm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.1.0"
23+
version="v23.2.0"
2424
shortname="core"
2525
gameservername="core"
2626
commandname="CORE"

tests/tests_fctrserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.1.0"
23+
version="v23.2.0"
2424
shortname="fctr"
2525
gameservername="fctrserver"
2626
commandname="CORE"

tests/tests_jc2server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.1.0"
23+
version="v23.2.0"
2424
shortname="jc2"
2525
gameservername="jc2server"
2626
commandname="CORE"

tests/tests_mcserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.1.0"
23+
version="v23.2.0"
2424
shortname="mc"
2525
gameservername="mcserver"
2626
commandname="CORE"

tests/tests_ts3server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.1.0"
23+
version="v23.2.0"
2424
shortname="ts3"
2525
gameservername="ts3server"
2626
commandname="CORE"

0 commit comments

Comments
 (0)