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.217.87
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
# FILES_TO_PATCH_PATTERNS is a space-separated list of shell glob patterns. # Files that match are eligible for a final migration of UUIDs and other # identifiers after recovery (if the layout recreation process has led # to a change of an UUID or a device name and a corresponding change needs # to be performed on restored configuration files ). # See finalize/GNU/Linux/280_migrate_uuid_tags.sh # We should add all such files to CHECK_CONFIG_FILES - if they change, # we risk inconsistencies between the restored files and recreated layout, # or failures of UUID migration. local file final_file symlink_target # The patterns are relative to /, change directory there # so that the shell finds the files during pathname expansion pushd / >/dev/null # The variable expansion is deliberately not quoted in order to perform # pathname expansion on the variable value. for file in $FILES_TO_PATCH_PATTERNS ; do final_file="/$file" IsInArray "$final_file" "${CHECK_CONFIG_FILES[@]}" && continue # Symlink handling (partially from 280_migrate_uuid_tags.sh): # avoid dead symlinks, and symlinks to files on dynamic filesystems # ( /proc etc.) - they are expected to change and validating # their checksums has no sense if test -L "$final_file" ; then if symlink_target="$( readlink -e "$final_file" )" ; then # If the symlink target contains /proc/ /sys/ /dev/ or /run/ we skip it because then # the symlink target is considered to not be a restored file that needs to be patched # and thus we don't need to generate and check its hash, either # cf. https://github.com/rear/rear/pull/2047#issuecomment-464846777 if echo $symlink_target | grep -Eq '/proc/|/sys/|/dev/|/run/' ; then Log "Skip adding symlink $final_file target $symlink_target on /proc/ /sys/ /dev/ or /run/ to CHECK_CONFIG_FILES" continue fi Debug "Adding symlink $final_file with target $symlink_target to CHECK_CONFIG_FILES" else LogPrint "Skip adding dead symlink $final_file to CHECK_CONFIG_FILES" continue fi fi CHECK_CONFIG_FILES+=( "$final_file" ) done popd >/dev/null