Procházet zdrojové kódy

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.
Kumi před 6 měsíci
rodič
revize
0845b34780
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      reportbot.service

+ 1 - 1
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