Browse Source

fix(check): prevent restart from bypassing check_executable (#2278)

pull/2280/head
Daniel Gibbs 6 years ago
committed by GitHub
parent
commit
c7413599d2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lgsm/functions/check_executable.sh

5
lgsm/functions/check_executable.sh

@ -9,10 +9,11 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Check if executable exists # Check if executable exists
if [ ! -f "${executabledir}/${execname}" ]; then if [ ! -f "${executabledir}/${execname}" ]; then
fn_print_fail_nl "executable was not found:" fn_print_fail_nl "executable was not found"
echo " * ${executabledir}/${execname}" echo "* ${executabledir}/${execname}"
if [ -d "${lgsmlogdir}" ]; then if [ -d "${lgsmlogdir}" ]; then
fn_script_log_fatal "Executable was not found: ${executabledir}/${execname}" fn_script_log_fatal "Executable was not found: ${executabledir}/${execname}"
fi fi
unset exitbypass
core_exit.sh core_exit.sh
fi fi

Loading…
Cancel
Save