Browse Source

update some headers

feature/dst-changes
Daniel Gibbs 4 months ago
parent
commit
5312e3c8cf
  1. 6
      lgsm/modules/command_dev_detect_deps.sh
  2. 1
      lgsm/modules/command_dev_detect_glibc.sh
  3. 6
      lgsm/modules/command_dev_detect_ldd.sh
  4. 7
      lgsm/modules/command_dev_parse_distro_details.sh
  5. 7
      lgsm/modules/command_dev_parse_game_details.sh

6
lgsm/modules/command_dev_detect_deps.sh

@ -6,13 +6,11 @@
# Description: Detects dependencies the server binary requires.
commandname="DEV-DETECT-DEPS"
commandaction="Developer detect deps"
commandaction="Dependencies Checker"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
echo -e ""
echo -e "${bold}Dependencies Checker${default}"
fn_messages_separator
fn_print_header
echo -e "Checking directory: "
echo -e "${serverfiles}"
if [ "$(command -v eu-readelf 2> /dev/null)" ]; then

1
lgsm/modules/command_dev_detect_glibc.sh

@ -11,7 +11,6 @@ commandaction="Developer detect glibc"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
fn_messages_separator
echo -e "glibc Requirements Checker"
fn_messages_separator

6
lgsm/modules/command_dev_detect_ldd.sh

@ -7,13 +7,11 @@
# Can check a file or directory recursively.
commandname="DEV-DETECT-LDD"
commandaction="Developer detect ldd"
commandaction="Shared Object Dependencies Checker"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
fn_messages_separator
echo -e "Shared Object dependencies Checker"
fn_messages_separator
fn_print_header
if [ -z "${serverfiles}" ]; then
dir=$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")

7
lgsm/modules/command_dev_parse_distro_details.sh

@ -5,6 +5,13 @@
# Website: https://linuxgsm.com
# Description: Display parsed distro details.
commandname="DEV-PARSE-DISTRO-DETAILS"
commandaction="Parse Distro Details"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
fn_print_header
check_ip.sh
check_status.sh
info_distro.sh

7
lgsm/modules/command_dev_parse_game_details.sh

@ -5,6 +5,13 @@
# Website: https://linuxgsm.com
# Description: Display parsed gameserver details.
commandname="DEV-PARSE-GAME-DETAILS"
commandaction="Parse Game Details"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
fn_print_header
if [ -f "config" ]; then
servercfgfullpath="config"
fi

Loading…
Cancel
Save