From 5140573be05772afda4405ed30bef9e211996922 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Thu, 18 Jun 2026 04:18:07 +0000 Subject: [PATCH] fix: update system.php service list for JARVIS VM (nginx/php-fpm/mariadb/redis/arc/agent) --- api/endpoints/system.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/endpoints/system.php b/api/endpoints/system.php index 82589d0..5dca765 100644 --- a/api/endpoints/system.php +++ b/api/endpoints/system.php @@ -89,7 +89,7 @@ function getNetworkIO(): array { } function getServices(): array { - $services = ["lshttpd","mysql","redis","memcached","postfix","dovecot","jarvis-agent"]; + $services = ["nginx","php8.3-fpm","mariadb","redis-server","jarvis-arc","jarvis-agent"]; $result = []; foreach ($services as $svc) { $out = shell_exec('systemctl is-active ' . escapeshellarg($svc) . ' 2>/dev/null');