You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hestiacp/bin/v-restart-dns

92 lines
2.4 KiB

#!/bin/bash
# info: restart dns service
# options: NONE
#
# example: v-restart-dns
#
# This function tells BIND service to reload dns zone files.
#----------------------------------------------------------#
# Variables & Functions #
#----------------------------------------------------------#
# Includes
# shellcheck source=/etc/hestiacp/hestia.conf
source /etc/hestiacp/hestia.conf
# shellcheck source=/usr/local/hestia/func/main.sh
source $HESTIA/func/main.sh
# load config file
source_conf "$HESTIA/conf/hestia.conf"
send_email_report() {
if [ -e '/etc/named.conf' ]; then
dns_conf='/etc/named.conf'
else
dns_conf='/etc/bind/named.conf'
fi
email=$(grep CONTACT $HESTIA/data/users/admin/user.conf)
email=$(echo "$email" | cut -f 2 -d "'")
tmpfile=$(mktemp)
subj="$(hostname): "$DNS_SYSTEM" restart failed"
/usr/sbin/named-checkconf "$dns_conf" >> $tmpfile 2>&1
if [ "$1" == "DO_RESTART" ]; then
service "$DNS_SYSTEM" restart >> $tmpfile 2>&1
fi
cat $tmpfile | $SENDMAIL -s "$subj" $email
rm -f $tmpfile
}
#----------------------------------------------------------#
# Action #
#----------------------------------------------------------#
# Exit
if [ -z "$DNS_SYSTEM" ] || [ "$DNS_SYSTEM" = 'remote' ]; then
exit
fi
if [ "$1" = "no" ]; then
exit
fi
# Schedule restart
if [ "$1" = 'scheduled' ] || [ -z "$1" -a "$SCHEDULED_RESTART" = 'yes' ]; then
sed -i "/\/$SCRIPT now/d" $HESTIA/data/queue/restart.pipe
echo "$BIN/$SCRIPT now" >> $HESTIA/data/queue/restart.pipe
exit
fi
if [ -e '/etc/named.conf' ]; then
dns_conf='/etc/named.conf'
else
dns_conf='/etc/bind/named.conf'
fi
if [ ! -e "/usr/sbin/named-checkconf" ]; then
ln -s "$(which named-checkconf)" /sbin/named-checkconf
fi
/usr/sbin/named-checkconf "$dns_conf" > /dev/null 2>&1
if [ $? -ne 0 ]; then
send_email_report
check_result "$E_RESTART" "$DNS_SYSTEM restart failed'"
fi
# Restart system
$BIN/v-restart-service "$DNS_SYSTEM" "$1" > /dev/null 2>&1
if [ $? -ne 0 ]; then
send_email_report "DO_RESTART"
check_result "$E_RESTART" "$DNS_SYSTEM restart failed"
fi
# Update restart queue
if [ -e "$HESTIA/data/queue/restart.pipe" ]; then
sed -i "/\/$SCRIPT now/d" $HESTIA/data/queue/restart.pipe
fi
#----------------------------------------------------------#
# Hestia #
#----------------------------------------------------------#
exit