mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-31 04:41:18 +00:00
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.
This commit is contained in:
parent
990e66dadd
commit
34e850d4a5
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
|||||||
|
livecd-rootfs (23.10.31) UNRELEASED; 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.
|
||||||
|
|
||||||
|
-- Steve Langasek <steve.langasek@ubuntu.com> Tue, 05 Sep 2023 12:29:24 -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)
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user