Browse Source

exitbypass=1

pull/1144/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
0ce0939607
  1. 3
      lgsm/functions/command_backup.sh

3
lgsm/functions/command_backup.sh

@ -54,7 +54,7 @@ if [ "${status}" != "0" ]; then
while true; do
read -e -i "n" -p "Stop ${servicename} while running the backup? [y/N]" yn
case $yn in
[Yy]* ) fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;;
[Yy]* ) exitbypass=1; fn_script_log "User choose to stop the server"; command_stop.sh; serverstopped="yes"; break;;
[Nn]* ) fn_script_log "User choose to not stop the server"; serverstopped="no"; break;;
* ) echo "Please answer yes or no.";;
esac
@ -131,6 +131,7 @@ if [ $? == 0 ]; then
fi
# Restart the server if it was stopped for the backup
if [ "${serverstopped}" == "yes" ]; then
exitbypass=1
command_start.sh
fi
else

Loading…
Cancel
Save