diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-20 09:44:20 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-22 23:07:02 +0200 |
commit | 55d016e0c207129d2b7fb76608e9660e091fcb4f (patch) | |
tree | 9e965386fce1b2aa354d3d45dab9cded3da275d0 /bin | |
parent | f4748cb9e9f179011c8548adfce48a5737fe277e (diff) | |
download | jenkins.debian.net-55d016e0c207129d2b7fb76608e9660e091fcb4f.tar.xz |
reproducible: shut up the maintenance job a bit more: do not notify when you catch package that are building since >36 hours ago
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_maintenance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 23038974..d9765ed3 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -153,7 +153,7 @@ PACKAGES=$(mktemp --tmpdir=$TEMPDIR maintenance-XXXXXXXXXXXX) sqlite3 -init $INIT ${PACKAGES_DB} "$QUERY" > $PACKAGES 2> /dev/null || echo "Warning: SQL query '$QUERY' failed." if grep -q '|' $PACKAGES ; then echo - echo "Warning: packages found where the build was started more than 36h ago:" + echo "Packages found where the build was started more than 36h ago:" printf ".width 0 25 \n $QUERY ; " | sqlite3 -init $INIT -header -column ${PACKAGES_DB} 2> /dev/null || echo "Warning: SQL query '$QUERY' failed." echo for PKG in $(cat $PACKAGES | cut -d "|" -f1) ; do |