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
# 310_autoexclude_usb.sh # Reason: issue #645 # /dev/sdb1 240234164 2996672 225027564 2% /mnt # is not detected as an USB path which causing rsync to loop until usb output_url is full # If we find an USB device we will just add it to AUTOEXCLUDE_USB_PATH for URL in "$OUTPUT_URL" "$BACKUP_URL" ; do if [[ ! -z "$URL" ]] ; then local host="$(url_host "$URL")" local scheme="$(url_scheme "$URL")" local path="$(url_path "$URL")" case $scheme in (usb) if [[ -z "$USB_DEVICE" ]] ; then USB_DEVICE="$path" fi ;; (*) continue ;; esac else continue # check next one fi # Return a proper short device name using udev REAL_USB_DEVICE=$(readlink -f $USB_DEVICE) # when USB device is not a block device no need to dig deeper here (in savelayout part) [[ ! -b "$REAL_USB_DEVICE" ]] && return # if we are still here then we found an USB device, e.g. /dev/sdb1 # in savelayout we have not yet mounted the OUTPUT_URL so if we find a mount point it was manually mounted # and therefore, we should add this mount point to AUTOEXCLUDE_USB_PATH grep -q "^$REAL_USB_DEVICE " /proc/mounts if [[ $? -eq 0 ]] ; then local usb_mntpt="$( grep "^$REAL_USB_DEVICE " /proc/mounts | cut -d" " -f2 | tail -1 )" if ! IsInArray "$usb_mntpt" "${AUTOEXCLUDE_USB_PATH[@]}" ; then AUTOEXCLUDE_USB_PATH+=( "$usb_mntpt" ) Log "Auto-excluding USB path $usb_mntpt [device $REAL_USB_DEVICE]" fi fi done