diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-05-11 14:05:36 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-05-11 14:05:36 +0200 |
commit | 555d9414f758cc0062eff700a0352ae177fd9be5 (patch) | |
tree | ef89df8763df88411072f96810f0ca5770e2de98 | |
parent | 707bc6b1aa736be3e3755e7feb9dcce513c1fe83 (diff) | |
download | jenkins.debian.net-555d9414f758cc0062eff700a0352ae177fd9be5.tar.xz |
reproducible: on download failures (of pkg set source data) be more noisy on irc, less noisy via mail
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index 08e8978b..8703803f 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -93,7 +93,9 @@ get_installable_set() { RESULT=$? if [ $RESULT -ne 0 ] ; then rm -f $TMPFILE - echo "Warning: dose-deb-coinstall cannot calculate the installable set for $1" + MESSAGE="Warning: dose-deb-coinstall cannot calculate the installable set for $1" + echo $MESSAGE + irc_message debian-reproducible $MESSAGE dose-deb-coinstall --explain --failures --deb-native-arch=$ARCH --bg=$PACKAGES --fg=${TMPFILE2} ABORT=true fi @@ -323,7 +325,7 @@ update_pkg_sets() { MESSAGE="Warning: could not download tail's latest packages file(s), skipping tails pkg set..." echo $MESSAGE irc_message debian-reproducible $MESSAGE - ABORT=false + ABORT=true fi fi progress_info 16 @@ -350,7 +352,9 @@ update_pkg_sets() { convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[18]}.pkgset else - echo "Warning: could not download grml's latest dpkg.selections file, skipping pkg set..." + MESSAGE="Warning: could not download grml's latest dpkg.selections file, skipping pkg set..." + echo $MESSAGE + irc_message debian-reproducible $MESSAGE ABORT=true fi fi |