Browse Source

updated dev command headers

pull/1915/head
Daniel Gibbs 7 years ago
parent
commit
b7e121ee72
  1. 4
      lgsm/functions/command_dev_detect_deps.sh
  2. 4
      lgsm/functions/command_dev_detect_glibc.sh
  3. 4
      lgsm/functions/command_dev_detect_ldd.sh
  4. 4
      lgsm/functions/command_dev_query_raw.sh

4
lgsm/functions/command_dev_detect_deps.sh

@ -4,8 +4,8 @@
# Website: https://linuxgsm.com
# Description: Detects dependencies the server binary requires.
local commandname="DEPS-DETECT"
local commandaction="Deps-Detect"
local commandname="DETECT-DEPS"
local commandaction="Detect-Deps"
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="

4
lgsm/functions/command_dev_detect_glibc.sh

@ -5,6 +5,10 @@
# Description: Automatically detects the version of GLIBC that is required.
# Can check a file or directory recursively.
local commandname="DETECT-GLIBC"
local commandaction="Detect-Glibc"
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="
echo "GLIBC Requirements Checker"
echo "================================="

4
lgsm/functions/command_dev_detect_ldd.sh

@ -5,6 +5,10 @@
# Description: Automatically detects required deps using ldd.
# Can check a file or directory recursively.
local commandname="DETECT-LDD"
local commandaction="Detect-LDD"
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="
echo "Shared Object dependencies Checker"
echo "================================="

4
lgsm/functions/command_dev_query_raw.sh

@ -4,6 +4,10 @@
# Website: https://gameservermanagers.com
# Description: Raw gamedig output of the server.
local commandname="QUERY-RAW"
local commandaction="QUERY-RAW"
local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
echo "================================="
echo "Gamedig Raw Output"
echo "================================="

Loading…
Cancel
Save