From cf502abfef38a020c63be56fcc163e08228ef0e1 Mon Sep 17 00:00:00 2001 From: PaulVua Date: Tue, 17 Feb 2026 12:46:39 +0100 Subject: [PATCH] Fix: Broaden pkill pattern to match 'screen.py' for stop command --- html/launcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/launcher.php b/html/launcher.php index 821a76b..407c436 100755 --- a/html/launcher.php +++ b/html/launcher.php @@ -1760,7 +1760,7 @@ if ($type == "screen_control") { shell_exec($command); echo "Started"; } elseif ($action == "stop") { - $command = 'sudo pkill -f "screen_control/screen.py"'; + $command = 'sudo pkill -f "screen.py"'; shell_exec($command); echo "Stopped"; }