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 /
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
# Include/Exclude components # Available configuration options: # EXCLUDE_MOUNTPOINTS # EXCLUDE_MD # EXCLUDE_VG # INCLUDE_VG # Uses the LAYOUT_TODO and LAYOUT_DEPS files to mark excluded files as done. # If a filesystem is excluded (for backup) we still may need to perform an # mkfs on the filesystem as it may be referenced in fstab and mounted # automatically, or is needed for a separate restore. # # If you somehow need this functionality, it's advised to exclude the # device or volume group #for mountpoint in "${EXCLUDE_MOUNTPOINTS[@]}" ; do # LogPrint "Excluding mountpoint $mountpoint in EXCLUDE_MOUNTPOINTS" # mark_as_done "fs:$mountpoint" # mark_tree_as_done "fs:$mountpoint" #done # check if in MANUAL_INCLUDE mode. If YES, mark all filesystems # NOT included in BACKUP_PROG_INCLUDE as done if [ "${MANUAL_INCLUDE:-NO}" == "YES" ] ; then while read fs device mountpoint junk ; do if ! IsInArray "$mountpoint" "${BACKUP_PROG_INCLUDE[@]}" ; then LogPrint "Excluding mountpoint $mountpoint not in BACKUP_PROG_INCLUDE (MANUAL_INCLUDE mode)" mark_as_done "fs:$mountpoint" mark_tree_as_done "fs:$mountpoint" fi done < <(grep ^fs $LAYOUT_FILE) fi for md in "${EXCLUDE_MD[@]}" ; do LogPrint "Excluding RAID $md in EXCLUDE_MD" mark_as_done "/dev/$md" mark_tree_as_done "/dev/$md" done for vg in "${EXCLUDE_VG[@]}" ; do LogPrint "Excluding Volume Group $vg in EXCLUDE_VG" mark_as_done "/dev/$vg" mark_tree_as_done "/dev/$vg" done if [ ${#ONLY_INCLUDE_VG[@]} -gt 0 ] ; then while read lvmgrp name junk ; do if ! IsInArray "${name#/dev/}" "${ONLY_INCLUDE_VG[@]}" ; then LogPrint "Excluding Volume Group ${name#/dev/} not in ONLY_INCLUDE_VG" mark_as_done "$name" mark_tree_as_done "$name" fi done < <(grep ^lvmgrp $LAYOUT_FILE) fi for component in "${EXCLUDE_COMPONENTS[@]}" ; do LogPrint "Excluding component $component in EXCLUDE_COMPONENTS" mark_as_done "$component" mark_tree_as_done "$component" done for component in "${EXCLUDE_RECREATE[@]}" ; do LogPrint "Excluding component $component in EXCLUDE_RECREATE" mark_as_done "$component" mark_tree_as_done "$component" done