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 /
verify /
YUM /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
050_check_YUM_requirements.sh
4.31
KB
-rw-r--r--
2026-04-01 09:39
060_mount_YUM_path.sh
140
B
-rw-r--r--
2026-04-01 09:39
070_set_backup_archive.sh
19.52
KB
-rw-r--r--
2026-04-01 09:39
550_check_backup_archive.sh
1.58
KB
-rw-r--r--
2026-04-01 09:39
980_umount_YUM_dir.sh
154
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# check whether the archive is actually there if ! is_true "$YUM_BACKUP_FILES" ; then return fi # Do not check when the backup is on a tape device: test "tape" = "$( url_scheme "$BACKUP_URL" )" && return 0 # The RESTORE_ARCHIVES array contains the restore input files. # If it is not set, RESTORE_ARCHIVES is only one element which is the backup archive: test "$RESTORE_ARCHIVES" || RESTORE_ARCHIVES=( "$backuparchive" ) for restoreinput in "${RESTORE_ARCHIVES[@]}" ; do local backup_splitted_file="$( dirname $restoreinput )/backup.splitted" local restoreinput_filename="$( basename $restoreinput )" test -s "$restoreinput" -o -d "$restoreinput" -o -f "$backup_splitted_file" || Error "Backup archive '$restoreinput_filename' not found." LogPrint "Calculating backup archive size" if test -f "$backup_splitted_file" ; then cut -d ' ' -f2 "$backup_splitted_file" | awk '{s+=$1} END {print s/(1024*1024)"M"}' >$TMP_DIR/backuparchive_size else du -sh "$restoreinput" | cut -d ' ' -f1 >$TMP_DIR/backuparchive_size fi read backuparchive_size <$TMP_DIR/backuparchive_size test "$backuparchive_size" && LogPrint "Backup archive size is $backuparchive_size ${BACKUP_PROG_COMPRESS_SUFFIX:+(compressed)}" if is_true "$BACKUP_INTEGRITY_CHECK" && test -f $restoreinput.md5 ; then if ! test -f "$backup_splitted_file" ; then LogPrint "Checking integrity of $restoreinput_filename" md5sum -c $restoreinput.md5 || Error "Integrity check failed. Restore aborted because BACKUP_INTEGRITY_CHECK is enabled." fi fi done