diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index e3c0045e..04e6ed5d 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -1302,7 +1302,14 @@ GUI(){ rm -f ${FOLDER}/status-check.running fi else - echo -e "${idsCL[LightYellow]}Status check already running, please wait and try again${idsCL[Default]}" + # echo -e "${idsCL[LightYellow]}Status check already running, please wait and try again${idsCL[Default]}" + echo -e "${idsCL[LightYellow]}Status checks are already running${idsCL[Default]}" + echo -en "${idsCL[LightCyan]}View the (L)ive log, or the (P)revious run log instead? ${idsCL[Default]}" + read -n1 choice + case $choice in + [Ll]) watch -n1 ${FOLDER}/status-check.running;; + [Pp]) echo; cat ${FOLDER}/status-check.running;; + esac echo fi;; checkdocker) CHECK_DOCKER_SERVICES ${2};;