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 /
RSYNC /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
050_prep_rsync.sh
1.34
KB
-rw-r--r--
2026-04-01 09:39
100_check_rsync.sh
1.32
KB
-rw-r--r--
2026-04-01 09:39
150_check_rsync_protocol_version.sh
2.69
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# 100_check_rsync.sh - analyze the BACKUP_URL # # 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. if test -z "$BACKUP_URL" ; then Error "Missing BACKUP_URL=rsync://[USER@]HOST[:PORT][::]/PATH !" fi local scheme="$(url_scheme "$BACKUP_URL")" # url_scheme still recognizes old style if [[ "$scheme" != "rsync" ]]; then Error "Missing BACKUP_URL=rsync://[USER@]HOST[:PORT][::]/PATH !" fi local host proto host="$(rsync_host "$BACKUP_URL")" proto="$(rsync_proto "$BACKUP_URL")" # check if host is reachable if test "$PING" ; then ping -c 2 "$host" >/dev/null || Error "Backup host [$host] not reachable." else Log "Skipping ping test" fi # check protocol connectivity case "$proto" in (rsync) Log "Test: $BACKUP_PROG ${BACKUP_RSYNC_OPTIONS[*]} $(rsync_remote_base "$BACKUP_URL")" $BACKUP_PROG "${BACKUP_RSYNC_OPTIONS[@]}" $(rsync_remote_base "$BACKUP_URL") >/dev/null \ || Error "Rsync daemon not running on $host" ;; (ssh) Log "Test: ssh $(rsync_remote_ssh "$BACKUP_URL") /bin/true" ssh $(rsync_remote_ssh "$BACKUP_URL") /bin/true >/dev/null 2>&1 \ || Error "Secure shell connection not setup properly [$(rsync_remote_ssh "$BACKUP_URL")]" ;; esac