Update linupx-scripts.sh

This commit is contained in:
2025-08-17 18:03:15 -05:00
parent 02e9aa2a15
commit 08a2d686ac

View File

@@ -264,7 +264,7 @@ GO_REBOOT() {
echo -en " ${idsCL[White]}(${idsCL[LightGreen]}Y${idsCL[White]})es ${idsCL[LightCyan]}/${idsCL[White]} (${idsCL[LightGreen]}*${idsCL[White]})any other key to cancel${idsCL[Default]}"
read -n 1 -p " : " choice
case "$choice" in
[Yy]) #${adm}shutdown -r now
[Yy]) ${adm}shutdown -r now
echo -e "\n\nThe system is now rebooting..."
sleep 60
exit 0;;
@@ -277,7 +277,7 @@ SHUTDOWN() {
echo -en " ${idsCL[White]}(${idsCL[LightGreen]}Y${idsCL[White]})es ${idsCL[LightCyan]}/${idsCL[White]} (${idsCL[LightGreen]}*${idsCL[White]})any other key to cancel${idsCL[Default]}"
read -n 1 -p " : " choice
case "$choice" in
[Yy]) #${adm}shutdown -h now
[Yy]) ${adm}shutdown -h now
echo -e "\n\nThe system is now shutting down..."
sleep 60
exit 0;;