Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
635
Issues
635
List
Boards
Labels
Service Desk
Milestones
Merge Requests
105
Merge Requests
105
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
d411448c
Commit
d411448c
authored
Mar 02, 2017
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow more time for the IPv6 transfer attemt to timeout and fall over to IPv4
parent
02716f97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
bin/tests/system/catz/tests.sh
bin/tests/system/catz/tests.sh
+4
-1
No files found.
bin/tests/system/catz/tests.sh
View file @
d411448c
...
...
@@ -461,12 +461,15 @@ status=`expr $status + $ret`
n
=
`
expr
$n
+ 1
`
echo
"I: checking that dom6.example is served by slave (
$n
)"
for
try
in
0 1 2 3 4 5 6 7 8 9
;
do
try
=
0
while
test
$try
-lt
150
do
$DIG
soa dom6.example @10.53.0.2
-p
5300
>
dig.out.test
$n
ret
=
0
grep
"status: NOERROR"
dig.out.test
$n
>
/dev/null
||
ret
=
1
[
$ret
-eq
0
]
&&
break
sleep
1
try
=
`
expr
$try
+ 1
`
done
if
[
$ret
!=
0
]
;
then
echo
"I: failed"
;
fi
status
=
`
expr
$status
+
$ret
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment