summaryrefslogtreecommitdiffstats
path: root/builder/ib-conf/module-setup.sh
blob: 0a80d89eb25312072253460259e1c76a2ddc49ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

check() {
    # Tell dracut that this module should only be included if it is required
    # explicitly.
    return 255
}
depends() {
    echo dnbd3-rootfs
}
install() {
    inst_hook pre-pivot 50 "$moddir/scripts/gen-ib-conf.sh"
}