📁 File Manager Pro
Advanced File Management System
/
usr
/
lib
/
dracut
/
modules.d
/
91crypt-loop
Server Path:
/usr/lib/dracut/modules.d/91crypt-loop
📄 Create New File
Create File
📁 Create New Folder
Create Folder
⬆️ Upload File
Upload File
📄
crypt-loop-lib.sh
Edit
Delete
Rename
📄
module-setup.sh
Edit
Delete
Rename
✏️ Editing: module-setup.sh
#!/usr/bin/bash # called by dracut check() { require_binaries losetup || return 1 return 255 } # called by dracut depends() { echo crypt } # called by dracut installkernel() { hostonly='' instmods loop } # called by dracut install() { inst_multiple losetup inst "$moddir/crypt-loop-lib.sh" "/lib/dracut-crypt-loop-lib.sh" dracut_need_initqueue }
💾 Save Changes