2019-02-08 12:05:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
check() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
depends() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# called by dracut
|
|
|
|
install() {
|
2019-04-04 12:02:10 +02:00
|
|
|
inst_fsck_help "btrfs" "@@INSTALLDIR@@/dracut-fsck-help.txt"
|
2019-02-08 12:05:30 +01:00
|
|
|
}
|
|
|
|
|