1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-10 14:57:40 +02:00

Add --check 0 option for update

This commit is contained in:
billz 2025-03-16 01:10:26 -07:00
parent 9ada9f9e68
commit b4b715f6e4

View File

@ -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;