Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
prep /
Linux-i386 /
Delete
Unzip
Name
Size
Permission
Date
Action
330_set_efi_arch.sh
1.25
KB
-rw-r--r--
2026-04-01 09:39
370_detect_secure_boot.sh
1.79
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
test "$SECURE_BOOT_BOOTLOADER" && return 0 # Note: # this is more of a hack than a really good solution. # The good solution would check the EFI variables for the bootloader # that is used to boot the system. But this is not implemented yet for # secure boot. # # The code in usr/share/rear/rescue/default/850_save_sysfs_uefi_vars.sh # could be used as a starting point for this, however currently # it tries to read the actual boot loader used only as a last resort # if well-known files are not found. # if type -p mokutil ; then PROGS+=( mokutil ) local secureboot_status if secureboot_status=$(mokutil --sb-state 2>&1) ; then if grep -q "SecureBoot enabled" <<<"$secureboot_status" ; then # Check first for arch-specific and then generic shim file, nullglob will give us the first one found and we ignore the others. # shellcheck disable=SC2206 SECURE_BOOT_BOOTLOADER=( /boot/efi/EFI/*/shim$EFI_ARCH.efi /boot/efi/EFI/*/shim.efi ) test -z "$SECURE_BOOT_BOOTLOADER" && BugError "Secure Boot is active, cannot auto-configure Secure Boot support:$LF" \ "No shim.efi or shim$EFI_ARCH.efi found in /boot/efi/EFI/*/ directory.$LF$LF" \ "As a workaround you can set SECURE_BOOT_BOOTLOADER to the correct shim.efi or shim$EFI_ARCH.efi file" # shellcheck disable=SC2128 LogPrint "Secure Boot auto-configuration using '$SECURE_BOOT_BOOTLOADER' as UEFI bootloader" else DebugPrint "Secure Boot is disabled, not using Secure Boot shim:$LF$secureboot_status" fi else DebugPrint "Secure Boot is not supported, not using Secure Boot shim:$LF$secureboot_status" fi else DebugPrint "mokutil not found, cannot detect Secure Boot status, not using Secure Boot shim" fi return 0