fix: handle the case where parent PID is 0

This happens inside an LXD VM.

Closes #7082
This commit is contained in:
andreby
2024-08-28 06:31:27 +02:00
parent 8e2b4dc688
commit 86cadfd43e

2
debian/prerm vendored
View File

@@ -20,7 +20,7 @@ ps_backtrace() {
fi
ppid=$(ps -o ppid= $pid)
ps uww $header_modifier -p $pid
if [ $pid -eq 1 ]; then
if [ $pid -eq 1 -o $pid -eq 0 ]; then
break
fi
pid=$ppid