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 /
BORG /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
100_set_vars.sh
886
B
-rw-r--r--
2026-04-01 09:39
101_check_borg.sh
111
B
-rw-r--r--
2026-04-01 09:39
250_mount_usb.sh
517
B
-rw-r--r--
2026-04-01 09:39
400_check_archive_access.sh
1.94
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. # # 100_set_vars.sh borg_set_vars # If BORGBACKUP_HOST is not set, we automatically assume that USB device should # be used as backup back end. # borg_dst_dev will be set to mount point, where USB_DEVICE will be mounted # in case of empty BORGBACKUP_HOST. While by non-zero BORGBACKUP_HOST we assume # that SSH should be used as transfer protocol and borg_dst_dev becomes # combined string of "BORGBACKUP_USERNAME@BORGBACKUP_HOST". # borg_dst_dev directory will be created in later stage # (if not already present) by 250_mount_usb.sh script. if [[ -n $BORGBACKUP_HOST ]]; then borg_dst_dev=ssh://$BORGBACKUP_USERNAME@$BORGBACKUP_HOST:$BORGBACKUP_PORT else # shellcheck disable=SC2034 borg_dst_dev=$BUILD_DIR/borg_backup fi