Imported 23.10.31 from mantic-release pocket.

No reason for CPC update specified.
This commit is contained in:
CloudBuilder 2023-09-06 03:58:24 +00:00
parent c4dfab244c
commit d4ec07c09e
3 changed files with 13 additions and 2 deletions

10
debian/changelog vendored
View File

@ -1,3 +1,13 @@
livecd-rootfs (23.10.31) mantic; urgency=medium
* blkid is unreliable in mount_image(), but this blkid call is only here
for debugging, so ignore any failures (even if we don't understand
them). LP: #2034299.
* mark the minimized autopkgtest as also allowing stderr, in the event of
any error messages from blkid.
-- Steve Langasek <steve.langasek@ubuntu.com> Tue, 05 Sep 2023 14:42:03 -0700
livecd-rootfs (23.10.30) mantic; urgency=medium livecd-rootfs (23.10.30) mantic; urgency=medium
* Fix unminimize to correctly list packages. (LP: #1996489) * Fix unminimize to correctly list packages. (LP: #1996489)

View File

@ -4,4 +4,4 @@ Restrictions: needs-root isolation-machine allow-stderr
Tests: minimized Tests: minimized
Depends: @, lsb-release Depends: @, lsb-release
Restrictions: needs-root isolation-machine Restrictions: needs-root isolation-machine allow-stderr

View File

@ -78,7 +78,8 @@ mount_image() {
# Add some information to the debug logs # Add some information to the debug logs
echo "Mounted disk image ${backing_img} to ${rootfs_dev_mapper}" echo "Mounted disk image ${backing_img} to ${rootfs_dev_mapper}"
blkid ${rootfs_dev_mapper} blkid ${rootfs_dev_mapper} \
|| echo "blkid failed; continuing"
return 0 return 0
} }