-
a clamav worker seems to be running, but he finishes tasks way to quickly and doesn't report to the result-page. It is also doesn't show up in the "Advanced" module-list of choosable options on submit.html? settings: Feeling dumb again ;) Startupsequence of pandora/logs/warning.log |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
It's probably because the file isn't known by clamav (either good or bad), so the module cannot say and reports nothing. |
Beta Was this translation helpful? Give feedback.
Q&D fix: changed the pandora.service for systemd to
ExecStart=/bin/bash -c "exec poetry run update --yes"
Voilá clamAV is enabled in pandora.
My best guess: clamd ist started via init.d and if not ready when systemd starts pandora, it will not "connect" to clamd.
Since
poetry run update --yes
takes much longer thanstart
there's enough time to start clamd and pandora will connect.OK for q&d but maybe I should investigate howto make pandora.service dependable of clamd already running...