diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-07-31 18:00:43 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-07-31 18:00:43 -0400 |
commit | c49069662ccf276a7b97f77524f3e2638c9fa152 (patch) | |
tree | 3c0d8edad43e0fb925b27952166577b41db90ea0 /bin | |
parent | 5864207efb2c5b5bc66766be49d534d275cd2376 (diff) | |
download | jenkins.debian.net-c49069662ccf276a7b97f77524f3e2638c9fa152.tar.xz |
reproducible Debian: just output the name of the zombie jobs, without the file system path
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_node_health_check.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_node_health_check.sh b/bin/reproducible_node_health_check.sh index 97ccbe78..bc1ef7a1 100755 --- a/bin/reproducible_node_health_check.sh +++ b/bin/reproducible_node_health_check.sh @@ -148,7 +148,9 @@ if [ "$HOSTNAME" = "$MAINNODE" ] ; then ZOMBIES=$(ls -1d /var/lib/jenkins/jobs/* | egrep '(reproducible_builder_amd64|reproducible_builder_i386|reproducible_builder_armhf|reproducible_builder_arm64|chroot-installation_wheezy)' || true) if [ ! -z "$ZOMBIES" ] ; then echo "Warning, rise of the jenkins job zombies has started again, these jobs should not exist:" - echo -e "$ZOMBIES" + for z in $ZOMBIES ; do + echo $(basename $z) + done DIRTY=true echo fi |