diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index 67237c44..d24814a5 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -587,6 +587,7 @@ SERVICES(){ echo " [${s}] ${NM_SERVICES[${srvc}]}" s=`expr $s + 1` done + echo "" if [ -z $action ] || [ "${action}" = "gui" ]; then echo " [B] Back" fi @@ -594,6 +595,7 @@ SERVICES(){ echo "" echo -e -n "${idsCL[LightYellow]}Please select a service from above:${idsCL[Default]} " read -n 1 selsrvc + selsrvc=`expr $selsrvc - 1` echo "" if [ -z ${NODE_SERVICES[${selsrvc}]} ] && [ "${selsrvc}" != "Q" ] && [ "${selsrvc}" != "q" ] && [ "${selsrvc}" != "B" ] && [ "${selsrvc}" != "b" ]; then echo "Thats an invaild option," @@ -614,6 +616,7 @@ SERVICES(){ echo " [${s}] ${srvcopt~}" s=`expr $s + 1` done + echo "" if [ -z $action ] || [ "${action}" = "gui" ]; then echo " [B] Back" fi @@ -621,6 +624,7 @@ SERVICES(){ echo "" echo -e -n "${idsCL[LightYellow]}Please select an action to run from above:${idsCL[Default]} " read -n 1 selsrvcopt + selsrvcopt=`expr $selsrvcopt - 1` echo "" if [ -z ${NM_SRVCOPT[${selsrvcopt}]} ] && [ "${selsrvcopt}" != "Q" ] && [ "${selsrvcopt}" != "q" ] && [ "${selsrvcopt}" != "B" ] && [ "${selsrvcopt}" != "b" ]; then echo "Thats an invaild option,"