summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-19 09:49:07 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-19 09:49:07 -0400
commit7160ae8e5d4f6929957c785d8d0f2d0757616c8e (patch)
treea9bb5f68de5a87bb958fe40b5e2b765598065405
parent4671ce5bdc54e615311f6f47014ea9fa1d8c90fa (diff)
fireslay: ignore zombie processes
-rwxr-xr-xfireslay1
1 files changed, 1 insertions, 0 deletions
diff --git a/fireslay b/fireslay
index fe5088a..d12887e 100755
--- a/fireslay
+++ b/fireslay
@@ -12,6 +12,7 @@ web_content_pids()
12 while read line 12 while read line
13 do set -- $line 13 do set -- $line
14 [ "${12} ${13}" = "Web Content" ] || continue 14 [ "${12} ${13}" = "Web Content" ] || continue
15 [ "${8}" != Z ] || continue
15 echo $1 16 echo $1
16 done 17 done
17 } 18 }