Comment 12 for bug 1928200

Revision history for this message
Bin Li (binli) wrote :

@daniel,

 Thanks for the solution, and it sounds good, could you help make merge request to finalrd to ask the maintainer's idea?

 From my side, currently finalrd used by mdadm, I would like to remove the dependency cause mdadm.

 In systemd/mdadm.shutdown from mdadm, it also do "mdadm --wait-clean --scan".

$ cat ./debian/mdadm.finalrd
#!/bin/sh
# SPDX-License-Identifier: GPL-3.0-only
set -e

if [ "$1" = "setup" ]
then
    . /usr/share/initramfs-tools/hook-functions
    copy_exec /sbin/mdadm
    copy_exec /sbin/mdmon

    exit 0
fi

mdmon --all --takeover
mdadm -vv --wait-clean --scan
mdadm -vv --stop --scan

 Thanks!