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

This commit is contained in:
root
2024-08-22 19:00:54 +02:00
parent f678bd8731
commit b4d2d8c3fc
2 changed files with 31 additions and 22 deletions

View File

@@ -72,11 +72,14 @@ switch ($_GET["op"]) {
if (!empty($arr)) {
foreach ($arr as $key=>$data) {
if ($key=="deployments") {
foreach ($data["INSTALLED_SERVICES"] as $service_name => $content) {
//echo base64_decode($content);
echo $service_name."<br>";
if (count($data["INSTALLED_SERVICES"])) {
foreach ($data["INSTALLED_SERVICES"] as $service_name => $content) {
//echo base64_decode($content);
echo $service_name."<br>";
}
}
//redis_remove("$key");
else echo "There are no deployments.";
redis_remove("$key");
}
}
}