From 1cee6af3a1a354e90ad3b05840d869ea34d73430 Mon Sep 17 00:00:00 2001 From: Ing Date: Mon, 10 Jun 2024 02:42:26 +0800 Subject: [PATCH] disable repeated operation judgment --- files/initrd/opt/rr/menu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/initrd/opt/rr/menu.sh b/files/initrd/opt/rr/menu.sh index 00afe675..f525f0c4 100755 --- a/files/initrd/opt/rr/menu.sh +++ b/files/initrd/opt/rr/menu.sh @@ -3319,7 +3319,7 @@ function notepadMenu() { ############################################################################### ############################################################################### -if [ $(ps -ef | grep -v grep | grep -c "menu.sh") -gt 1 ]; then +if false && [ $(ps -ef | grep -v grep | grep -c "menu.sh") -gt 1 ]; then echo "$(TEXT "Another instance of the menu.sh is running.")" exit 1 fi