⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.11
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
initramfs-tools
/
hooks
/
View File Name :
cryptpassdev
#!/bin/sh set -e PREREQ="cryptroot" prereqs() { echo "$PREREQ" } case "$1" in prereqs) prereqs exit 0 ;; esac . /usr/share/initramfs-tools/hook-functions # Hooks for adding filesystem modules to the initramfs when the passdev # keyscript is used # Check whether the passdev script has been included if [ ! -x "$DESTDIR/lib/cryptsetup/scripts/passdev" ]; then exit 0 fi # The filesystem type of the removable device is probed at boot-time, so # we add a generous list of filesystems to include. This also helps with # recovery situation as including e.g. the vfat module might help a user # who needs to create a new cryptkey (using a backup of a keyfile) on # a windows-machine for example. # This list needs to be kept in sync with the one defined in passdev.c manual_add_modules ext4 ext3 ext2 vfat btrfs reiserfs xfs jfs ntfs iso9660 udf exit 0