Update nodemgmt-scripts.sh

This commit is contained in:
2023-06-23 23:00:39 -05:00
parent e459ed9ca4
commit 3c1990a03e

View File

@@ -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};;