Restore the call to 'umount -R $mountpoint' from umount_partition,

accidentally dropped in previous upload.
This commit is contained in:
Steve Langasek 2017-09-13 12:50:07 -07:00
parent df7bb19cec
commit c9ef91e262
2 changed files with 8 additions and 0 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
livecd-rootfs (2.455) UNRELEASED; urgency=medium
* Restore the call to 'umount -R $mountpoint' from umount_partition,
accidentally dropped in previous upload.
-- Steve Langasek <steve.langasek@ubuntu.com> Wed, 13 Sep 2017 12:49:24 -0700
livecd-rootfs (2.454) artful; urgency=medium
[ Steve Langasek ]

View File

@ -152,6 +152,7 @@ EOF
umount_partition() {
local mountpoint=${1}
teardown_mountpoint $mountpoint
umount -R $mountpoint
udevadm settle
if [ -n "${rootfs_dev_mapper}" -a -b "${rootfs_dev_mapper}" ]; then