Fix: Revert to using sudo in launcher.php to support visudo configuration

This commit is contained in:
PaulVua
2026-02-17 17:14:20 +01:00
parent a208540093
commit 36d4bac0a5

View File

@@ -1755,13 +1755,13 @@ if ($type == "set_cpu_power_mode") {
if ($type == "screen_control") { if ($type == "screen_control") {
$action = $_GET['action']; $action = $_GET['action'];
if ($action == "start") { if ($action == "start") {
// Run as background process without sudo (requires www-data in video group) // Run as background process with sudo (requires nopasswd in sudoers)
// Redirecting to a temp log file to debug startup issues // Redirecting to a temp log file to debug startup issues
$command = 'export DISPLAY=:0 && nohup /usr/bin/python3 /var/www/nebuleair_pro_4g/screen_control/screen.py > /tmp/screen_control.log 2>&1 &'; $command = 'export DISPLAY=:0 && nohup sudo /usr/bin/python3 /var/www/nebuleair_pro_4g/screen_control/screen.py > /tmp/screen_control.log 2>&1 &';
shell_exec($command); shell_exec($command);
echo "Started. Check /tmp/screen_control.log for details."; echo "Started. Check /tmp/screen_control.log for details.";
} elseif ($action == "stop") { } elseif ($action == "stop") {
$command = 'pkill -f "screen.py" 2>&1'; $command = 'sudo pkill -f "screen.py" 2>&1';
$output = shell_exec($command); $output = shell_exec($command);
echo "Stopped. Output: " . $output; echo "Stopped. Output: " . $output;
} }