Hi,
On Thu, 08 Feb 2024 at 15:17:10 +0100, Juan José González wrote:
I saw on the internet to send signal SIGHUP to the process,
This doesn't appear to work, possibly due to master process waiting for
the long-running children to terminate. I normally just restart the
service.
Do you have any recommendation to do it safely?
AFAICT you don't have the perms to run `systemctl restart
crashreport.service` but sending a SIGQUIT to the master process (the
one with PID1 as parent) should work. That'll terminate the process,
but it'll restart automatically since the unit is socket activated.