5563976645
- Use correct path for dracut-fsck-help.txt in module-setup.sh (bsc#1122539) * Remove module-setup.sh * Add module-setup.sh.in OBS-URL: https://build.opensuse.org/request/show/689454 OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=314
18 lines
204 B
Bash
18 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"
|
|
}
|
|
|