I believe this might be the culprit:

In /usr/share/initramfs-tools/scripts/local-top/mdadm:


if [ -x "$(command -v udevsettle)" ]; then
  verbose && log_begin_msg "Waiting for udev to process events"
  udevsettle 10
  verbose && log_end_msg
fi

The condition will never be true because udevsettle was a symlink to 
/sbin/udevadm which has been absent from Debian since Lenny.

Try editing this file to replace the above with:

if [ -x "$(command -v udevadm)" ]; then
  verbose && log_begin_msg "Waiting for udev to process events"
  udevadm settle --timeout=10
  verbose && log_end_msg
fi


Dave


This email (including any attachments) is confidential and may be privileged. 
If you have received it in error, please notify the sender by return email and 
delete this message from your system. Any unauthorised use or dissemination of 
this message in whole or in part is strictly prohibited. Please note that 
emails are susceptible to change and we will not be liable for the improper or 
incomplete transmission of the information contained in this communication nor 
for any delay in its receipt or damage to your system. We do not guarantee that 
the integrity of this communication has been maintained nor that this 
communication is free of viruses, interceptions or interference.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to