You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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 |
|
}
|
|
|