mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-08 01:11:31 +00:00
Resurrect Balint's fix from
lp:~rbalint/livecd-rootfs/livecd-rootfs-autopkgtest-fix to wrap kpartx and trap spurious errors, since the problem is still being seen intermittently on i386 despite us calling sync before kpartx. (LP: #1684090)
This commit is contained in:
parent
8b141ef85a
commit
1b95302ef7
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -1,5 +1,9 @@
|
|||||||
livecd-rootfs (2.441.3) UNRELEASED; urgency=medium
|
livecd-rootfs (2.441.3) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Resurrect Balint's fix from
|
||||||
|
lp:~rbalint/livecd-rootfs/livecd-rootfs-autopkgtest-fix to wrap kpartx
|
||||||
|
and trap spurious errors, since the problem is still being seen
|
||||||
|
intermittently on i386 despite us calling sync before kpartx. (LP: #1684090)
|
||||||
* Mark autopkgtests isolation-machine since debootstrap won't work in a
|
* Mark autopkgtests isolation-machine since debootstrap won't work in a
|
||||||
container.
|
container.
|
||||||
|
|
||||||
|
@ -11,9 +11,22 @@ backing_img=
|
|||||||
apt-get -qqy install dosfstools gdisk
|
apt-get -qqy install dosfstools gdisk
|
||||||
|
|
||||||
clean_loops() {
|
clean_loops() {
|
||||||
|
local kpartx_ret
|
||||||
|
local kpartx_stdout
|
||||||
|
|
||||||
if [ -n "${backing_img}" ]; then
|
if [ -n "${backing_img}" ]; then
|
||||||
kpartx -v -d "${backing_img}"
|
# sync before removing loop to avoid "Device or resource busy" errors
|
||||||
|
sync
|
||||||
|
kpartx_ret=""
|
||||||
|
kpartx_stdout=$(kpartx -v -d "${backing_img}") || kpartx_ret=$?
|
||||||
|
echo "$kpartx_stdout"
|
||||||
|
if [ -n "$kpartx_ret" ]; then
|
||||||
|
if echo "$kpartx_stdout" | grep -q "loop deleted: "; then
|
||||||
|
echo "Suppressing kpartx returning error (#860894)"
|
||||||
|
else
|
||||||
|
exit $kpartx_ret
|
||||||
|
fi
|
||||||
|
fi
|
||||||
unset backing_img
|
unset backing_img
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user