Added more debugging output to the autopkgtest

This commit is contained in:
Aaron Rainbolt 2023-02-02 10:42:05 -06:00
parent 1f79703ee1
commit 46bece00eb
2 changed files with 12 additions and 0 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
lubuntu-update-notifier (0.5.2) lunar; urgency=medium
* Tweaked the autopkgtest script to return more detailed debugging info.
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Thu, 02 Feb 2023 10:41:08 -0600
lubuntu-update-notifier (0.5.1) lunar; urgency=medium
* Added functionality for repairing an interrupted upgrade. (LP: #2002255)

View File

@ -18,8 +18,14 @@ done
IFS=$oldIFS
if [ $UPG -ge 0 ]; then
echo "Success: /usr/lib/update-notifier/apt-check is working"
echo "Debugging output >>>"
echo $OUT;
echo "<<< End debugging output
exit 0
else
echo "Failure: /usr/lib/update-notifier/apt-check is NOT working"
echo "Debugging output >>>"
echo $OUT;
echo "<<< End debugging output"
exit 1
fi