summaryrefslogtreecommitdiff
path: root/libre-testing/mdadm/mdadm_hook
blob: 5371baacaa95b12e470532bd5c109c47972a1d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/ash

run_hook() {
    local i= mdconfig=/etc/mdadm.conf

    # for partitionable raid, we need to load md_mod first!
    modprobe md_mod 2>/dev/null

    if [ -n "$md" ]; then
        echo 'DEVICE partitions' >"$mdconfig"
        for i in $(cat /proc/cmdline); do
            case $i in
                # raid
                md=[0-9]*,/*)
                    device=${i%%,*}
                    device=${device/=/}
                    array=${i#*,}
                    echo "ARRAY /dev/$device devices=$array"
                    ;;
                # partitionable raid
                md=d[0-9]*,/*)
                    device=${i%%,*}
                    device=${device/=/_}
                    array=${i#*,}
                    echo "ARRAY /dev/$device devices=$array"
                    ;;
                # raid UUID
                md=[0-9]*,[0-9,a-fA-F]*)
                    device=${i%%,*}
                    device=${device/=/}
                    array=${i#*,}
                    echo "ARRAY /dev/$device UUID=$array"
                    ;;
                # partitionable raid UUID
                md=d[0-9]*,[0-9,a-fA-F]*)
                    device=${i%%,*}
                    device=${device/=/_}
                    array=${i#*,}
                    echo "ARRAY /dev/$device UUID=$array"
                    ;;
            esac
        done >>"$mdconfig"
    fi

    # assemble everything
    [ -s "$mdconfig" ] && /usr/bin/mdassemble
}

# vim: set ft=sh ts=4 sw=4 et: