summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_housekeeping.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/bin/reproducible_housekeeping.sh b/bin/reproducible_housekeeping.sh
index 717e0a23..18007dcb 100755
--- a/bin/reproducible_housekeeping.sh
+++ b/bin/reproducible_housekeeping.sh
@@ -53,3 +53,21 @@ if [ ! -z "$OLDSTUFF" ] ; then
echo
fi
+# find processes which should not be there
+HAYSTACK=$(mktemp)
+RESULT=$(mktemp)
+ps axo pid,user,size,pcpu,cmd > $HAYSTACK
+for ZOMBIE in $(pgrep -u 1234 -P 1) ; do
+ # faked-sysv comes and goes...
+ grep ^$ZOMBIE $HAYSTACK | grep -v faked-sysv >> $RESULT 2> /dev/null
+done
+if [ -s $RESULT ] ; then
+ echo
+ echo "Warnung: processes found which should not be there:"
+ cat $RESULT
+ echo
+ echo "Please cleanup manually."
+ echo
+fi
+rm $HAYSTACK $RESULT
+