From 0845b3478052d46cc4b45b4a9a6554469fccb6a3 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 5 May 2024 19:46:15 +0200 Subject: [PATCH] fix: update reportbot startup command The reportbot service startup command has been updated to use the correct module name, `matrix_reportbot`, ensuring the service starts using the intended Python module. This change resolves issues where the reportbot service failed to start due to an incorrect module name reference. --- reportbot.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reportbot.service b/reportbot.service index 656b196..0d3409a 100644 --- a/reportbot.service +++ b/reportbot.service @@ -7,7 +7,7 @@ Type=simple User=reportbot Group=reportbot WorkingDirectory=/opt/reportbot -ExecStart=/opt/reportbot/.venv/bin/python3 -um reportbot +ExecStart=/opt/reportbot/.venv/bin/python3 -um matrix_reportbot Restart=always RestartSec=10