Forward-port of downstream kernel tests that haven't been upstreamed yet, manually converted to TMT. Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
17 lines
222 B
Bash
17 lines
222 B
Bash
#!/bin/bash
|
|
|
|
# called by dracut
|
|
check() {
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
depends() {
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
install() {
|
|
inst_hook pre-pivot 50 "$moddir/relabel.sh"
|
|
inst_multiple setfiles getfattr
|
|
}
|