From 68e7635f6dc916a2db49f26e14480585c492993f Mon Sep 17 00:00:00 2001 From: boban Date: Sun, 26 Apr 2026 20:54:42 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20ClamAV=20enable()=20blockiert=20nicht=20?= =?UTF-8?q?mehr=20=E2=80=93=20shell=5Fexec=20+=20nohup=20+=20 --- app/Livewire/Ui/Security/ClamavManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/Ui/Security/ClamavManager.php b/app/Livewire/Ui/Security/ClamavManager.php index 8b5a584..834ecb4 100644 --- a/app/Livewire/Ui/Security/ClamavManager.php +++ b/app/Livewire/Ui/Security/ClamavManager.php @@ -55,7 +55,7 @@ class ClamavManager extends Component { $this->lastError = ''; $this->lastSuccess = ''; - @exec('sudo -n /usr/local/sbin/mailwolt-clamav enable > /tmp/mw-clamav-start.log 2>&1 &'); + @shell_exec('nohup sudo -n /usr/local/sbin/mailwolt-clamav enable /tmp/mw-clamav-start.log 2>&1 &'); $this->enabled = true; $this->lastSuccess = 'ClamAV wird gestartet… Dies kann bis zu 60 Sekunden dauern. Klicken Sie danach auf „Aktualisieren".'; }