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
637
Issues
637
List
Boards
Labels
Service Desk
Milestones
Merge Requests
104
Merge Requests
104
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
a27bbd21
Commit
a27bbd21
authored
Jun 02, 2010
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2909. [bug] named-checkzone -p could die if "update-policy local;"
was specified in named.conf. [RT #21416]
parent
29f0da7f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
CHANGES
CHANGES
+3
-0
bin/tests/system/checkconf/good.conf
bin/tests/system/checkconf/good.conf
+7
-1
bin/tests/system/checkconf/tests.sh
bin/tests/system/checkconf/tests.sh
+6
-1
No files found.
CHANGES
View file @
a27bbd21
2909. [bug] named-checkzone -p could die if "update-policy local;"
was specified in named.conf. [RT #21416]
2908. [bug] It was possible for re-signing to stop after removing
a DNSKEY. [RT #21384]
...
...
bin/tests/system/checkconf/good.conf
View file @
a27bbd21
...
...
@@ -14,7 +14,7 @@
*
PERFORMANCE
OF
THIS
SOFTWARE
.
*/
/* $
Id
:
good
.
conf
,
v
1
.
4
2007
/
06
/
19
23
:
47
:
01
tbox
Exp
$ */
/* $
Id
:
good
.
conf
,
v
1
.
5
2010
/
06
/
02
01
:
07
:
47
marka
Exp
$ */
/*
*
This
is
just
a
random
selection
of
configuration
options
.
...
...
@@ -54,3 +54,9 @@ options {
serial
-
query
-
rate
100
;
server
-
id
none
;
};
zone
"example1"
{
type
master
;
file
"xxx"
;
update
-
policy
local
;
};
bin/tests/system/checkconf/tests.sh
View file @
a27bbd21
...
...
@@ -12,7 +12,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: tests.sh,v 1.
3 2007/06/19 23:47:01 tbox
Exp $
# $Id: tests.sh,v 1.
4 2010/06/02 01:07:47 marka
Exp $
SYSTEMTESTTOP
=
..
.
$SYSTEMTESTTOP
/conf.sh
...
...
@@ -26,6 +26,11 @@ $CHECKCONF good.conf > /dev/null 2>&1 || ret=1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I: checking that named-checkconf prints a known good config"
ret
=
0
$CHECKCONF
-p
good.conf
>
/dev/null 2>&1
||
ret
=
1
if
[
$ret
!=
0
]
;
then
echo
"I:failed"
;
fi
status
=
`
expr
$status
+
$ret
`
echo
"I: checking that named-checkconf handles a known bad config"
ret
=
1
...
...
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