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.216.228
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 /
BAREOS /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
400_prep_bareos.sh
273
B
-rw-r--r--
2026-04-01 09:39
450_check_bareos_config_files.sh
284
B
-rw-r--r--
2026-04-01 09:39
460_check_bareos_director.sh
562
B
-rw-r--r--
2026-04-01 09:39
500_check_bareos_client_configured.sh
1007
B
-rw-r--r--
2026-04-01 09:39
510_check_bareos_filesets.sh
2.81
KB
-rw-r--r--
2026-04-01 09:39
550_check_bareos_restore_jobs.sh
1.03
KB
-rw-r--r--
2026-04-01 09:39
570_check_bareos_plugin_dir.sh
338
B
-rw-r--r--
2026-04-01 09:39
Save
Rename
# 550_check_bareos_restore_jobs.sh # Let the user select a matching Bareos Restore Job. # Alternatively, BAREOS_RESTORE_JOB can be set in the config file. mapfile -t restore_jobs < <( get_available_restore_job_names ) Log "available restore jobs:" "${restore_jobs[@]}" if (( ${#restore_jobs[@]} == 0 )); then Error "No Bareos restore jobs found" fi if [ "$BAREOS_RESTORE_JOB" ]; then if ! IsInArray "$BAREOS_RESTORE_JOB" "${restore_jobs[@]}"; then Error "Bareos Restore Job ($BAREOS_RESTORE_JOB) is not available. Available restore jobs:" "${restore_jobs[@]}" fi return fi if (( ${#restore_jobs[@]} == 1 )); then BAREOS_RESTORE_JOB="${restore_jobs[0]}" { echo "# added by prep/BAREOS/default/550_check_bareos_restore_jobs.sh" echo "BAREOS_RESTORE_JOB=$BAREOS_RESTORE_JOB" echo } >> "$ROOTFS_DIR/etc/rear/rescue.conf" LogPrint "Using '$BAREOS_RESTORE_JOB' as BAREOS_RESTORE_JOB." return fi Error "Could not determine which restore job to use, no BAREOS_RESTORE_JOB specified."