Imported 2.408.55

No reason for CPC update specified.
This commit is contained in:
CloudBuilder 2019-10-10 09:50:04 +00:00
parent d13f0fe540
commit 5b5b8a7970
2 changed files with 12 additions and 0 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
livecd-rootfs (2.408.55) xenial; urgency=medium
* magic-proxy: dump proxy log to stdout on failure (LP: #1847300)
-- Robert C Jennings <robert.jennings@canonical.com> Tue, 08 Oct 2019 11:02:08 -0500
livecd-rootfs (2.408.54) xenial; urgency=medium livecd-rootfs (2.408.54) xenial; urgency=medium
* Revert exclusion of makedev from buildd chroots, as it turned out not to * Revert exclusion of makedev from buildd chroots, as it turned out not to

View File

@ -393,6 +393,12 @@ EOF
if [ -e binary.success ]; then if [ -e binary.success ]; then
rm -f binary.success rm -f binary.success
else else
# Dump the magic-proxy log to stdout on failure to aid debugging
if [ -f /build/livecd.magic-proxy.log ] ; then
echo "================= Magic proxy log (start) ================="
cat /build/livecd.magic-proxy.log
echo "================== Magic proxy log (end) =================="
fi
exit 1 exit 1
fi fi