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.158
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 /
BACULA /
default /
Delete
Unzip
Name
Size
Permission
Date
Action
400_prep_bacula.sh
955
B
-rw-r--r--
2026-04-01 09:39
450_check_BACULA_client_configured.sh
802
B
-rw-r--r--
2026-04-01 09:39
500_check_BACULA_bconsole_results.sh
1.82
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# Check that bacula is installed and configured # # are all the files/directories present? if [ "$BEXTRACT_DEVICE" -o "$BEXTRACT_VOLUME" ]; then ### Bacule restore using bextract, no need for a director return fi # # See if we can ping the director # # is the director server present? Fetch from $BACULA_CONF_DIR/bconsole.conf file # For issue #3082 collect the BACULA_DIRECTOR in a more error proof way BACULA_DIRECTOR=$(grep -i '[[:space:]]address[[:space:]]=' $BACULA_CONF_DIR/bconsole.conf | sed -e 's/[ ]*#.*//' -e 's/[ \t]address[ \t]=[ \t]//') [ "${BACULA_DIRECTOR}" ] || Error "Director not defined in $BACULA_CONF_DIR/bconsole.conf" # check if the director is responding? if has_binary nc; then DIRECTOR_RESULT=$(nc -vz "${BACULA_DIRECTOR}" 9101 2>&1 ; echo $?) [[ $DIRECTOR_RESULT -ne 0 ]] && Error "Bacula director ${BACULA_DIRECTOR} is not responding." fi # does the director allow connections from this client? bconsole knows! # # We want these two lines to show that we can connect to the director # and that the director can connect to the file daemon on this system. # "Connecting to Director 'director_name-fd:9101'" # "Connecting to Client 'bacula_client_name-fd at FQDN:9102" # For issue #3082 collect the BACULA_CLIENT in a more error proof way BACULA_CLIENT=$(grep -i 'Name[[:space:]]' $BACULA_CONF_DIR/bacula-fd.conf | sed -e 's/[ ]*#.*//' -e 's/[ \t]Name[ \t]=[ \t]//' | cut -d'-' -f1) [ "${BACULA_CLIENT}" ] || Error "Client $(hostname -s) not defined in $BACULA_CONF_DIR/bacula-fd.conf" BACULA_RESULT=( $(echo -e " status client=${BACULA_CLIENT}-fd" | bconsole | grep Connect) ) director=${BACULA_RESULT[3]} client=${BACULA_RESULT[9]} [ "$director" ] || Error "Bacula director not reachable." [ "$client" ] || Error "Bacula client status unknown on director." Log "Bacula director = $director, client = $client"