23 lines
300 B
Bash
Executable File
23 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
|
|
command -v
|
|
|
|
check() {
|
|
require_binaries ntfs-3g || return 1
|
|
return 255
|
|
}
|
|
|
|
depends() {
|
|
echo dmsquash-live
|
|
return 0
|
|
}
|
|
|
|
install() {
|
|
inst_multiple fusermount ulockmgr_server mount.fuse ntfs-3g
|
|
dracut_need_initqueue
|
|
}
|
|
|
|
installkernel() {
|
|
hostonly='' instmods fuse
|
|
}
|