Browse Source

re arraigned exitbypass

pull/914/head
Daniel Gibbs 9 years ago
parent
commit
eed7bad25a
  1. 3
      lgsm/functions/command_restart.sh
  2. 6
      lgsm/functions/core_exit.sh

3
lgsm/functions/command_restart.sh

@ -8,7 +8,8 @@ local commandnane="RESTART"
local commandaction="Restarting"
local selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
exitbypass=1
info_config.sh
exitbypass=1
command_stop.sh
exitbypass=1
command_start.sh

6
lgsm/functions/core_exit.sh

@ -11,7 +11,9 @@ fn_exit_dev_debug(){
fi
}
if [ -n "${exitcode}" ]&&[ "${exitcode}" != "0" ]; then
if [ -n "${exitbypass}" ]; then
unset exitbypass
elif [ -n "${exitcode}" ]&&[ "${exitcode}" != "0" ]; then
if [ "${exitcode}" == "1" ]; then
fn_script_log_fatal "${selfname} exiting with code: ${exitcode}"
elif [ "${exitcode}" == "2" ]; then
@ -25,8 +27,6 @@ if [ -n "${exitcode}" ]&&[ "${exitcode}" != "0" ]; then
# remove trap.
trap - INT
exit ${exitcode}
elif [ -n "${exitbypass}" ]; then
unset exitbypass
else
exitcode=0
fn_script_log_pass "${selfname} exiting with code: ${exitcode}"

Loading…
Cancel
Save