1
0
mirror of https://github.com/myvesta/vesta.git synced 2025-03-12 04:35:23 -07:00

named-checkconf validation output

This commit is contained in:
Serghey Rodin 2013-10-07 13:49:08 +03:00
parent cad5397e6a
commit 976e58302e

@ -43,7 +43,14 @@ if [ ! -z "$DNS_SYSTEM" ]; then
email=$(echo "$email" | cut -f 2 -d "'")
tmpfile=$(mktemp)
subj="$(hostname): $DNS_SYSTEM restart failed"
/etc/init.d/$DNS_SYSTEM configtest >> $tmpfile 2>&1
# Get dns config path
if [ -e '/etc/named.conf' ]; then
dns_conf='/etc/named.conf'
else
dns_conf='/etc/bind/named.conf'
fi
named-checkconf $dns_conf >> $tmpfile 2>&1
/etc/init.d/$DNS_SYSTEM restart >> $tmpfile 2>&1
cat $tmpfile | $send_mail -s "$subj" $email
rm -f $tmpfile