From 7c6dab1f088edf8e222b6db507831f41871d8d13 Mon Sep 17 00:00:00 2001 From: Gabriel Giordano Date: Wed, 20 Dec 2023 23:20:16 -0300 Subject: [PATCH] Fix status check on php8.3 --- wo/core/services.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wo/core/services.py b/wo/core/services.py index 9e49cfb..c8f3878 100644 --- a/wo/core/services.py +++ b/wo/core/services.py @@ -170,6 +170,7 @@ class WOService(): 'php8.0-fpm', 'php8.1-fpm', 'php8.2-fpm', + 'php8.3-fpm', ]: retcode = subprocess.getstatusoutput('service {0} status' .format(service_name))