mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 12:31:29 -05:00
42 lines
1.9 KiB
Bash
42 lines
1.9 KiB
Bash
# Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
|
|
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
# PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
# $Id: tests.sh,v 1.3 2011/08/09 04:12:25 tbox Exp $
|
|
|
|
status=0
|
|
n=0
|
|
|
|
n=`expr $n + 1`
|
|
echo "I:Checking that reconfiguring empty zones is silent ($n)"
|
|
$RNDC -c ../common/rndc.conf -s 10.53.0.1 -p 9953 reconfig
|
|
ret=0
|
|
grep "automatic empty zone" ns1/named.run > /dev/null || ret=1
|
|
grep "received control channel command 'reconfig'" ns1/named.run > /dev/null || ret=1
|
|
grep "reloading configuration succeeded" ns1/named.run > /dev/null || ret=1
|
|
sleep 1
|
|
grep "zone serial (0) unchanged." ns1/named.run > /dev/null && ret=1
|
|
if [ $ret != 0 ] ; then echo I:failed; status=`expr $status + $ret`; fi
|
|
|
|
n=`expr $n + 1`
|
|
echo "I:Checking that reloading empty zones is silent ($n)"
|
|
$RNDC -c ../common/rndc.conf -s 10.53.0.1 -p 9953 reload > /dev/null
|
|
ret=0
|
|
grep "automatic empty zone" ns1/named.run > /dev/null || ret=1
|
|
grep "received control channel command 'reload'" ns1/named.run > /dev/null || ret=1
|
|
grep "reloading configuration succeeded" ns1/named.run > /dev/null || ret=1
|
|
sleep 1
|
|
grep "zone serial (0) unchanged." ns1/named.run > /dev/null && ret=1
|
|
if [ $ret != 0 ] ; then echo I:failed; status=`expr $status + $ret`; fi
|
|
|
|
exit $status
|