initramfs-tools 0.142ubuntu12 fails on upgrade: wrong multiarch libdir Edit

Bug #2037156 reported by Thomas Schiex
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
initramfs-tools (Ubuntu)
Fix Released
Medium
Unassigned

Bug Description

I just upgraded my system from Lunar to Mantic. initramfs is systematically producing messages such as:

  E: /usr/share/initramfs-tools/hooks/dhcpcd failed with return 1.

Looking into the corresponding bash script shows that the penultimate line produces an incorrect result:

  multiarch_dir=$(ldd /usr/sbin/dhcpcd | awk '/libc.so./ { print $3 }' | cut -f3 -d/)

stores "lib" instead of x86_64-linux-gnu in my case.

the correct line (tested) should be:

  multiarch_dir=$(ldd /usr/sbin/dhcpcd | awk '/libc.so./ { print $3 }' | cut -f4 -d/)

since ldd produces

 libc.so.6 => /usr/lib/x86_64-linux-gnu/libc.so.6 (0x00007f5baec00000)

Revision history for this message
Thomas Schiex (thomas-schiex) wrote :
Revision history for this message
Benjamin Drung (bdrung) wrote :

Thank you for taking the time to report this bug and helping to make Ubuntu better. I'll change that code so support both /lib and /usr/lib:

multiarch_dir=$(ldd /usr/sbin/dhcpcd | sed -En 's;^.*/lib/([^/]+)/libc\.so\..*$;\1;p')

Changed in initramfs-tools (Ubuntu):
status: New → Triaged
importance: Undecided → Medium
Benjamin Drung (bdrung)
Changed in initramfs-tools (Ubuntu):
status: Triaged → Fix Committed
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package initramfs-tools - 0.142ubuntu13

---------------
initramfs-tools (0.142ubuntu13) mantic; urgency=medium

  * Support usr-merged library path when detecting mutliarch dir (LP: #2037156)

 -- Benjamin Drung <email address hidden> Sat, 23 Sep 2023 13:45:37 +0200

Changed in initramfs-tools (Ubuntu):
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.