| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #!/bin/bash
- # LinuxGSM check.sh module
- # Author: Daniel Gibbs
- # Contributors: http://linuxgsm.com/contrib
- # Website: https://linuxgsm.com
- # Description: Overall function for managing checks.
- # Runs checks that will either halt on or fix an issue.
- functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
- # Every command that requires checks just references check.sh.
- # check.sh selects which checks to run by using arrays.
- if [ "${commandname}" != "INSTALL" ]; then
- check_root.sh
- fi
- if [ "${commandname}" != "UPDATE-LGSM" ]; then
- check_version.sh
- fi
- check_tmuxception.sh
- if [ "$(whoami)" != "root" ] || [ -f /.dockerenv ]; then
- if [ "${commandname}" != "MONITOR" ]; then
- check_permissions.sh
- fi
- fi
- if [ "${commandname}" != "INSTALL" ] && [ "${commandname}" != "UPDATE-LGSM" ] && [ "${commandname}" != "DETAILS" ] && [ "${commandname}" != "POST-DETAILS" ]; then
- check_system_dir.sh
- fi
- allowed_commands_array=(DEBUG START)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_executable.sh
- fi
- done
- if [ "$(whoami)" != "root" ] || [ -f /.dockerenv ]; then
- allowed_commands_array=(DEBUG START INSTALL)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_glibc.sh
- fi
- done
- fi
- allowed_commands_array=(BACKUP CHANGE-PASSWORD CONSOLE DEBUG DETAILS FASTDL MAP-COMPRESSOR MODS-INSTALL MODS-REMOVE MODS-UPDATE MONITOR POST-DETAILS RESTART START STOP TEST-ALERT UPDATE UPDATE-LGSM VALIDATE WIPE)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_logs.sh
- fi
- done
- allowed_commands_array=(DEBUG START)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_deps.sh
- fi
- done
- allowed_commands_array=(CONSOLE DEBUG MONITOR START STOP)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_config.sh
- fi
- done
- allowed_commands_array=(DEBUG DETAILS DEV-QUERY-RAW MONITOR POST-DETAILS START STOP)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- if [ -z "${installflag}" ]; then
- check_ip.sh
- fi
- fi
- done
- allowed_commands_array=(CHECK-UPDATE DEBUG MONITOR START UPDATE VALIDATE)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- if [ "${appid}" ]; then
- check_steamcmd.sh
- fi
- fi
- done
- allowed_commands_array=(CHANGE-PASSWORD DETAILS MONITOR POST-DETAILS START STOP UPDATE VALIDATE)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_status.sh
- fi
- done
- allowed_commands_array=(DEBUG START INSTALL)
- for allowed_command in "${allowed_commands_array[@]}"; do
- if [ "${allowed_command}" == "${commandname}" ]; then
- check_system_requirements.sh
- fi
- done
|