* server executable change to new name
* change glibc version to 2.15
* add missing dependency libgdiplus for eco
* updated and converted to using jq to gather server config details
Co-authored-by: Daniel Gibbs <[email protected]>
Removes a long time annoyance for any users who have servers with multiple IP addresses.
Now if the server has more than one IP address LinuxGSM will automatically try query all IP's until it gets a response.
The default IP in settings will now be 0.0.0.0 this also helps resolve issues with source servers and LAN browser #2534
If required it is still possible to manually enter the IP address you want to use. Also, displayip setting is useful if you want your alert to specify an IP address
IP variables for reference
ip the default IP for the server if using 0.0.0.0 LinuxGSM will query all available IP addresses
queryips a list of the ip addresses that will be queried
queryip the ip address that is being queried
displayip the ip/hostname you want to show up in alerts. if unset the internet-facing IP will be used
extip the external internet-facing IP address
Fix blueprint not being wiped on full-wipe
Removed reference to random seeds as this feature doesn't exist yet
updated command name from wipeall to full-wipe (old commands will still work but are now hidden)
* fix(bug): gamedig not using correct JSON object
Command to output the results for player count was looking at the wrong object in the tree. This change corrects it to the right objects.
* feat(monitor): Include bot count in monitor output
Update to include bot count in monitor output from Gamedig.
* fix(messages): Fix to set proper component logging
Fixed issue where messages from different actions weren't logging correctly due to using the wrong variable in when crafting the log message
* Confirm commit for changes made
Commit changes made after pull change submiited.
* fix(command_backup): Correct path for exludedir variable
The current implementation doesn't use the full file path to determine the existence of the backup directory in relation to the server which means the current stats just looks for the "lgsm/backup" directory. That may work if you're already in the root directory for the server but if you're scripting the backups via cron, you're not likely going to be invoking the backup from the root directory.
* fix: query_gamedig.sh tuning for correct player count
Reworked the jq flags to produce a count of players based on the length of the original JSON key used. However, I've found that while things like TF2 will produce the proper value, the Minecraft plugin will have an extra user online that is empty. See example below:
"players": [
{
"id": "81eeda65-9002-4f0d-9d3f-b4872e2a2042",
"name": "iamjack1221"
},
{}
]
* correct else
* space
Co-authored-by: Daniel Gibbs <[email protected]>