summaryrefslogtreecommitdiffstats
path: root/modules.d/90mdraid/mdraid-needshutdown.sh
blob: f248c4bb6d0bf49d3891b2dd710350ae0a4e9dcd (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

type getarg > /dev/null 2>&1 || . /lib/dracut-lib.sh

for md in /dev/md[0-9_]*; do
    [ -b "$md" ] || continue
    need_shutdown
    break
done