From b4b715f6e4d60e93a65eb7f009692eea04aa1142 Mon Sep 17 00:00:00 2001 From: billz Date: Sun, 16 Mar 2025 01:10:26 -0700 Subject: [PATCH] Add --check 0 option for update --- ajax/system/sys_perform_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ajax/system/sys_perform_update.php b/ajax/system/sys_perform_update.php index b92320a5..06948f97 100644 --- a/ajax/system/sys_perform_update.php +++ b/ajax/system/sys_perform_update.php @@ -12,7 +12,7 @@ if (isset($_POST['csrf_token'])) { } // set installer path + options $path = getenv("DOCUMENT_ROOT"); - $opts = " --update --yes --path $path"; + $opts = " --update --yes --check 0 --path $path"; $installer = "sudo /etc/raspap/system/raspbian.sh"; $execUpdate = $installer.$opts;