Fix a reference to an undefined variable in a script that's set -u.

core-include-dmsetup
Steve Langasek 7 years ago committed by Balint Reczey
parent 3f9753b2c0
commit 4d7509f570

1
debian/changelog vendored

@ -26,6 +26,7 @@ livecd-rootfs (2.408.19) UNRELEASED; urgency=medium
* If we're using SUBPROJECT=minimize, and tzdata is not installed, remove * If we're using SUBPROJECT=minimize, and tzdata is not installed, remove
files that have been left behind. This is a workaround for a bug that files that have been left behind. This is a workaround for a bug that
should be fixed in tzdata. should be fixed in tzdata.
* Fix a reference to an undefined variable in a script that's set -u.
[ Balint Reczey ] [ Balint Reczey ]
* Mount using --make-rslave to ensure safe unmounts for rbind mounts * Mount using --make-rslave to ensure safe unmounts for rbind mounts

@ -61,7 +61,7 @@ install_grub() {
efi_boot_dir="/boot/efi/EFI/BOOT" efi_boot_dir="/boot/efi/EFI/BOOT"
chroot mountpoint mkdir -p "${efi_boot_dir}" chroot mountpoint mkdir -p "${efi_boot_dir}"
if [ "$SUBPROJECT" = minimize ] && [ -n "$partuuid" ]; then if [ "${SUBPROJECT:-}" = minimize ] && [ -n "$partuuid" ]; then
# FIXME: code duplicated between 032-disk-image.binary # FIXME: code duplicated between 032-disk-image.binary
# and 033-disk-image-uefi.binary. We want to fix this to not # and 033-disk-image-uefi.binary. We want to fix this to not
# have initramfs-tools installed at all on these images. # have initramfs-tools installed at all on these images.

Loading…
Cancel
Save