mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-15 11:08:52 -04:00
verify server is answering before starting next server
This commit is contained in:
parent
04282909ec
commit
7afa3a5a14
1 changed files with 3 additions and 4 deletions
|
|
@ -15,7 +15,7 @@
|
|||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
# PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: start.pl,v 1.28 2011/10/13 01:32:32 vjs Exp $
|
||||
# $Id: start.pl,v 1.28.118.1 2012/02/06 23:23:18 marka Exp $
|
||||
|
||||
# Framework for starting test servers.
|
||||
# Based on the type of server specified, check for port availability, remove
|
||||
|
|
@ -94,9 +94,8 @@ if ($server) {
|
|||
&check_ports();
|
||||
foreach $name(@ns, @lwresd, @ans) {
|
||||
&start_server($name);
|
||||
}
|
||||
foreach $name(@ns) {
|
||||
&verify_server($name);
|
||||
&verify_server($name) if ($name =~ /^ns/);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue