17 lines
204 B
Bash
17 lines
204 B
Bash
#!/bin/bash
|
|
|
|
# called by dracut
|
|
check() {
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
depends() {
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
install() {
|
|
inst_fsck_help "btrfs" "@@INSTALLDIR@@/dracut-fsck-help.txt"
|
|
}
|
|
|