141 changed files with 323 additions and 201 deletions
@ -1,16 +1,16 @@ |
|||||
# Linux Game Server Manager - Functions |
# LinuxGSM - Modules |
||||
|
|
||||
These functions are universal functions that work in all scripts. |
These modules are scripts that are called upon by the primary script linuxgsm.sh |
||||
|
|
||||
## Function Names |
## Module Names |
||||
Functions have been named to give an idea of what the function does. |
Modules have been named to give an idea of what the function does. |
||||
|
|
||||
* core: Essential functions that will always run first. |
* core: Essential modules that will always run first. |
||||
* command: Primary command function. |
* command: Primary command function. |
||||
* check: Runs checks that will either halt on or fix an issue. |
* check: Runs checks that will either halt on or fix an issue. |
||||
* dev: development functions. |
* dev: development modules. |
||||
* fix: Applies a game server specific fix. |
* fix: Applies a game server specific fix. |
||||
* info: retrieves information from a source such as config file or the OS. |
* info: retrieves information from a source such as config file or the OS. |
||||
* install: Functions related to the installer. |
* install: modules related to the installer. |
||||
* monitor: Functions related to monitor. |
* monitor: modules related to monitor. |
||||
* update: Functions that update the game server. |
* update: modules that update the game server. |
||||
|
@ -1,7 +1,8 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
# LinuxGSM alert_telegram.sh function |
# LinuxGSM alert_telegram.sh module |
||||
# Author: Bennet Becker <[email protected]> |
# Author: Daniel Gibbs |
||||
# Website: https://bytegaming.de |
# Contributors: http://linuxgsm.com/contrib |
||||
|
# Website: https://linuxgsm.com |
||||
# Description: Sends Telegram Messenger alert. |
# Description: Sends Telegram Messenger alert. |
||||
|
|
||||
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
||||
|
@ -1,9 +1,11 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
# LinuxGSM fix_rust.sh function |
# LinuxGSM fix_rust.sh module |
||||
# Author: Daniel Gibbs |
# Author: Daniel Gibbs |
||||
|
# Contributors: http://linuxgsm.com/contrib |
||||
# Website: https://linuxgsm.com |
# Website: https://linuxgsm.com |
||||
# Description: Resolves various issues with Soldier of Fortune 2. |
# Description: Resolves various issues with Soldier of Fortune 2. |
||||
|
|
||||
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
||||
|
|
||||
# Fixes: error while loading shared libraries: libcxa.so.1 |
# Fixes: error while loading shared libraries: libcxa.so.1 |
||||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${serverfiles}" |
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${serverfiles}" |
||||
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue