Browse Source
fix(check): prevent restart from bypassing check_executable (#2278)
pull/2280/head
Daniel Gibbs
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
lgsm/functions/check_executable.sh
|
|
@ -9,10 +9,11 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
# Check if executable exists |
|
|
|
if [ ! -f "${executabledir}/${execname}" ]; then |
|
|
|
fn_print_fail_nl "executable was not found:" |
|
|
|
echo " * ${executabledir}/${execname}" |
|
|
|
fn_print_fail_nl "executable was not found" |
|
|
|
echo "* ${executabledir}/${execname}" |
|
|
|
if [ -d "${lgsmlogdir}" ]; then |
|
|
|
fn_script_log_fatal "Executable was not found: ${executabledir}/${execname}" |
|
|
|
fi |
|
|
|
unset exitbypass |
|
|
|
core_exit.sh |
|
|
|
fi |
|
|
|