diff --git a/debian/changelog b/debian/changelog index 80a26fc5..946fbfad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (2.467) artful; urgency=medium + + * fix remaining wrong references to /etc/default/grub.d/40-partuuid + + -- Steve Langasek Wed, 04 Oct 2017 23:52:21 -0700 + livecd-rootfs (2.466) artful; urgency=medium * ubuntu-server: drop hard-coded test key from the subiquity overlay in diff --git a/live-build/functions b/live-build/functions index 4b316eb5..ec6d15a7 100644 --- a/live-build/functions +++ b/live-build/functions @@ -276,8 +276,9 @@ replace_grub_root_with_label() { CHROOT_ROOT="$1" # If boot by partuuid has been requested, don't override. - if [ -f $CHROOT_ROOT/etc/default/grub.d/40-partuuid ] && \ - grep -q ^GRUB_FORCE_PARTUUID= $CHROOT_ROOT/etc/default/grub.d/40-partuuid.cfg; then + if [ -f $CHROOT_ROOT/etc/default/grub.d/40-force-partuuid.cfg ] && \ + grep -q ^GRUB_FORCE_PARTUUID= $CHROOT_ROOT/etc/default/grub.d/40-force-partuuid.cfg + then return 0 fi sed -i -e "s,root=[^ ]\+,root=LABEL=${fs_label}," \