mirror of
https://github.com/darold/sendmailanalyzer.git
synced 2026-05-15 22:02:32 -06:00
[GH-ISSUE #36] rc.sendmailanalyzer not stopping corectly #29
Labels
No labels
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/sendmailanalyzer#29
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sirydog81 on GitHub (Mar 13, 2016).
Original GitHub issue: https://github.com/darold/sendmailanalyzer/issues/36
i see there are two process running, a parent and a child
rc.sendmailanalyzer stop is trying to stop process 3662 that is saved in the sendmailanalyzer.pid file. In my case it always fails. Even if if i force kill the parent, the child still remains and becomes a zombie.
Both processes belong to same PGID
so i modified the script to kill all processes belonging to that GPID:
@darold commented on GitHub (Aug 31, 2016):
Sorry for the response delay, commit
45957f1applied your recommendation.Thanks.