diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-02 02:20:11 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-02 02:20:11 +0100 |
commit | 6ca26f3df7a54213e20035d923ce3dac69540ec9 (patch) | |
tree | 5fb344ecd0f2f19533ec37b3041f098cd89a4500 /bin | |
parent | 55289a77bc8c9957c0d33c9a607103d8b31d1e59 (diff) | |
download | jenkins.debian.net-6ca26f3df7a54213e20035d923ce3dac69540ec9.tar.xz |
reproducible: killing zombies is really hard
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_maintainance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintainance.sh b/bin/reproducible_maintainance.sh index b33701f2..fbe49aff 100755 --- a/bin/reproducible_maintainance.sh +++ b/bin/reproducible_maintainance.sh @@ -115,7 +115,7 @@ if [ -s $RESULT ] ; then echo "Warning: processes found which should not be there:" cat $RESULT echo - ZOMBIES=$(echo $RESULT | cut -d " " -f1 | xargs echo) + ZOMBIES=$(cat $RESULT | cut -d " " -f1 | xargs echo) echo "kill -9 $(echo $ZOMBIES)" echo "Please cleanup manually." echo |