Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
dracut /
modules.d /
90crypt /
Delete
Unzip
Name
Size
Permission
Date
Action
crypt-cleanup.sh
452
B
-rwxr-xr-x
2022-06-19 22:35
crypt-lib.sh
7.98
KB
-rwxr-xr-x
2022-06-19 22:35
crypt-run-generator.sh
804
B
-rwxr-xr-x
2022-06-19 22:35
cryptroot-ask.sh
5.46
KB
-rwxr-xr-x
2022-06-19 22:35
module-setup.sh
6.23
KB
-rwxr-xr-x
2022-06-19 22:35
parse-crypt.sh
7.9
KB
-rwxr-xr-x
2022-06-19 22:35
parse-keydev.sh
1.35
KB
-rwxr-xr-x
2022-06-19 22:35
probe-keydev.sh
383
B
-rwxr-xr-x
2022-06-19 22:35
Save
Rename
#!/usr/bin/sh . /lib/dracut-lib.sh type crypttab_contains > /dev/null 2>&1 || . /lib/dracut-crypt-lib.sh dev=$1 luks=$2 crypttab_contains "$luks" "$dev" && exit 0 allowdiscards="-" # parse for allow-discards if [ -n "$DRACUT_SYSTEMD" ] || strstr "$(cryptsetup --help)" "allow-discards"; then if discarduuids=$(getargs "rd.luks.allow-discards"); then discarduuids=$(str_replace "$discarduuids" 'luks-' '') if strstr " $discarduuids " " ${luks##luks-}"; then allowdiscards="discard" fi elif getargbool 0 rd.luks.allow-discards; then allowdiscards="discard" fi fi echo "$luks $dev - timeout=0,$allowdiscards" >> /etc/crypttab if command -v systemctl > /dev/null; then systemctl daemon-reload systemctl start cryptsetup.target fi exit 0