....
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
root
2024-08-16 12:13:57 +02:00
parent e76f402c66
commit 961765f5d0
3 changed files with 85 additions and 4 deletions

View File

@@ -32,6 +32,21 @@ switch ($_GET["op"]) {
}
else echo "WAIT";
break;
case "check_install":
$arr = check_redis("web_out",$_GET["key"]);
if (!empty($arr)) {
foreach ($arr as $key=>$data) {
//echo $key."-".$_GET["key"];
if ($key==$_GET["key"]) { // if install key moved to web_out
if ($data["INSTALL_STATUS"]==1) {
redis_remove("$key");
echo "INSTALLED";
}
}
}
}
else echo "NOT EXISTS";
break;
case "docker":
echo true;
break;