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.110
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 /
layout /
save /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
300_list_dependencies.sh
103
B
-rw-r--r--
2026-04-01 09:39
305_uniq_disktodo.sh
189
B
-rw-r--r--
2026-04-01 09:39
310_autoexclude_usb.sh
1.61
KB
-rw-r--r--
2026-04-01 09:39
310_include_exclude.sh
2.21
KB
-rw-r--r--
2026-04-01 09:39
320_autoexclude.sh
5.05
KB
-rw-r--r--
2026-04-01 09:39
330_remove_exclusions.sh
4.08
KB
-rw-r--r--
2026-04-01 09:39
335_remove_excluded_multipath_vgs.sh
2.23
KB
-rw-r--r--
2026-04-01 09:39
340_generate_mountpoint_device.sh
1.21
KB
-rw-r--r--
2026-04-01 09:39
350_save_partitions.sh
1.43
KB
-rw-r--r--
2026-04-01 09:39
445_guess_bootloader.sh
8.32
KB
-rw-r--r--
2026-04-01 09:39
450_check_bootloader_files.sh
2.05
KB
-rw-r--r--
2026-04-01 09:39
450_check_network_files.sh
1.41
KB
-rw-r--r--
2026-04-01 09:39
490_check_files_to_patch.sh
2.19
KB
-rw-r--r--
2026-04-01 09:39
550_barrel_devicegraph.sh
3.66
KB
-rw-r--r--
2026-04-01 09:39
600_snapshot_files.sh
1.74
KB
-rw-r--r--
2026-04-01 09:39
700_save_grubenv.sh
1.31
KB
-rw-r--r--
2026-04-01 09:39
950_verify_disklayout_file.sh
16.99
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Save a hash of files that would warrant a new rescue image when changed. # shellcheck disable=SC2168,SC2207 if [ "$WORKFLOW" = "checklayout" ] ; then return 0 fi local obj local config_files=() for obj in "${CHECK_CONFIG_FILES[@]}" ; do if [ -d "$obj" ] ; then config_files+=( $( find "$obj" -type f ) ) elif [ -e "$obj" ] ; then config_files+=( "$obj") fi done md5sum "${config_files[@]}" > "$VAR_DIR/layout/config/files.md5sum" # For COVE backup, additionally verify binaries if enabled local item local cove_files=() if [ "$WORKFLOW" = "mksystemstate" ] && is_true "$COVE_VERIFY_BINARIES" ; then for item in "${COVE_VERIFY_PATHS[@]}" ; do if [ -d "$item" ] ; then while IFS= read -r -d '' file ; do cove_files+=( "$file" ) done < <(find "$item" -type f -print0) elif [ -f "$item" ] ; then cove_files+=( "$item" ) fi done # See finalize/COVE/Debian/620_upgrade_bootloaders.sh to find out when # signed binaries are copied from the Cove Rescue Media to the target fs # on systems running Debian 10. The logic is simplified because UEFI_BOOTLOADER # path is unknown by this time. if [ "$OS_VENDOR_VERSION" = "Debian/10" ] && is_true "$USING_UEFI_BOOTLOADER"; then local exclusions=( /boot/efi/EFI/debian/grubx64.efi /boot/efi/EFI/debian/shimx64.efi ) local exclusion for exclusion in "${exclusions[@]}"; do cove_files=( $( RmInArray "$exclusion" "${cove_files[@]}" ) ) done fi fi cove_md5sum_file="$VAR_DIR/layout/config/cove-files.md5sum" : > "$cove_md5sum_file" for filepath in "${cove_files[@]}"; do md5sum "$filepath" >> "$cove_md5sum_file" done