From 4b2602de640bf050565095069c3ab21bb275890e Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 17 Aug 2025 17:53:44 -0500 Subject: [PATCH] Update linupx-scripts.sh --- linupx-scripts.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/linupx-scripts.sh b/linupx-scripts.sh index 93ce737..af52fc4 100755 --- a/linupx-scripts.sh +++ b/linupx-scripts.sh @@ -245,7 +245,9 @@ DRYRUN2() { GO_REBOOT() { [ "$EUID" -ne 0 ] && adm="SUDO " || adm="" if [ -f /opt/idssys/nodemgmt/.tmp/.skip ]; then - read -n 1 -p "NodeMgmt Skip is currently enabled, should we disable that and reboot or just reboot (y/r)?" choice + echo -e "\n${idsCL[LightCyan]}NodeMgmt Skip is currently enabled: Should we disable that and reboot, or just reboot?${idsCL[Default]}" + echo -en "${idsCL[Cyan]}(${idsCL[LightGreen]}Y${idsCL[Cyan]})es / (${idsCL[LightGreen]}R${idsCL[Cyan]})eboot / any other key to cancel${idsCL[Default]}" + read -n 1 -p " : " choice case "$choice" in [Yy]) ${adm}/usr/local/bin/nmg skip reboot echo 'The system is now rebooting...'