Browse Source

header updates

feature/dst-changes
Daniel Gibbs 4 months ago
parent
commit
85f2652081
  1. 2
      lgsm/modules/command_backup.sh
  2. 5
      lgsm/modules/command_console.sh
  3. 6
      lgsm/modules/command_debug.sh
  4. 2
      lgsm/modules/command_details.sh
  5. 2
      lgsm/modules/command_dev_clear_modules.sh
  6. 2
      lgsm/modules/command_dev_detect_deps.sh
  7. 5
      lgsm/modules/command_dev_detect_glibc.sh
  8. 2
      lgsm/modules/command_dev_query_raw.sh
  9. 7
      lgsm/modules/command_dev_ui.sh

2
lgsm/modules/command_backup.sh

@ -6,7 +6,7 @@
# Description: Creates a .tar.gz file in the backup directory.
commandname="BACKUP"
commandaction="Backing up"
commandaction="Backup"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set

5
lgsm/modules/command_console.sh

@ -6,13 +6,14 @@
# Description: Gives access to the server tmux console.
commandname="CONSOLE"
commandaction="Access console"
commandaction="Access Console"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
check.sh
fn_print_header
check.sh
if [ "${consoleverbose}" == "yes" ]; then
echo -e "* Verbose output: ${lightgreen}yes${default}"
elif [ "${consoleverbose}" == "no" ]; then

6
lgsm/modules/command_debug.sh

@ -6,7 +6,7 @@
# Description: Runs the server without tmux and directly from the terminal.
commandname="DEBUG"
commandaction="Debuging"
commandaction="Debugging"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
@ -24,11 +24,13 @@ fn_lockfile_trap() {
core_exit.sh
}
fn_print_header
check.sh
fix.sh
info_distro.sh
info_game.sh
fn_print_header
{
echo -e "${lightblue}Distro:\t\t${default}${distroname}"
echo -e "${lightblue}Architecture:\t\t${default}${arch}"

2
lgsm/modules/command_details.sh

@ -6,7 +6,7 @@
# Description: Displays server information.
commandname="DETAILS"
commandaction="Viewing details"
commandaction="Display Details"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set

2
lgsm/modules/command_dev_clear_modules.sh

@ -6,7 +6,7 @@
# Description: Deletes the contents of the modules dir.
commandname="DEV-CLEAR-MODULES"
commandaction="Clearing modules"
commandaction="Clear modules"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set

2
lgsm/modules/command_dev_detect_deps.sh

@ -6,7 +6,7 @@
# Description: Detects dependencies the server binary requires.
commandname="DEV-DETECT-DEPS"
commandaction="Dependencies Checker"
commandaction="Dependency Checker"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set

5
lgsm/modules/command_dev_detect_glibc.sh

@ -7,12 +7,11 @@
# Can check a file or directory recursively.
commandname="DEV-DETECT-GLIBC"
commandaction="Developer detect glibc"
commandaction="Detect Glibc Requirements"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
echo -e "glibc Requirements Checker"
fn_messages_separator
fn_print_header
if [ ! "$(command -v objdump 2> /dev/null)" ]; then
fn_print_failure_nl "objdump is missing"

2
lgsm/modules/command_dev_query_raw.sh

@ -10,6 +10,8 @@ commandaction="Developer query raw"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_set
fn_print_header
check.sh
info_game.sh
info_distro.sh

7
lgsm/modules/command_dev_ui.sh

@ -8,11 +8,16 @@
commandname="DEV-DEBUG"
commandaction="Developer ui"
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_reset
fn_firstcommand_set
fn_print_header
# Load ANSI colors
fn_ansi_loader
echo -e ""
echo -e "${lightgreen}Colours${default}"
fn_messages_separator
# Print supported colors
echo -e "${default}default"
echo -e "${black}black${default}"

Loading…
Cancel
Save