You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 5, 2026. It is now read-only.
Currently, before any scan/update action is called, there is new configd process being created:
// drweb needs to have the daemon started firstconfigd:=exec.CommandContext(ctx, "/opt/drweb.com/bin/drweb-configd", "-d")
_, err=configd.Output()
assert(err)
deferconfigd.Process.Kill()
which is then incorrectly cleaned up as this daemon creates child processes in the meantime and configd.Process.Kill() will not kill grandchildren.