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
Knot DNS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
22
Issues
22
List
Boards
Labels
Service Desk
Milestones
Merge Requests
16
Merge Requests
16
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
Knot projects
Knot DNS
Commits
d3713840
Commit
d3713840
authored
Oct 28, 2017
by
Daniel Salzman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dnssec: don't log child records publishing if CHILD_RECORDS_NONE is set
parent
86667b16
Pipeline
#22608
passed with stages
in 11 minutes and 56 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/knot/events/handlers/dnssec.c
src/knot/events/handlers/dnssec.c
+6
-1
No files found.
src/knot/events/handlers/dnssec.c
View file @
d3713840
...
...
@@ -43,7 +43,12 @@ void event_dnssec_reschedule(conf_t *conf, zone_t *zone,
log_dnssec_next
(
zone
->
name
,
(
time_t
)
refresh_at
);
if
(
refresh
->
plan_ds_query
)
{
log_zone_notice
(
zone
->
name
,
"DNSSEC, published CDS, CDNSKEY for submission"
);
conf_val_t
id
=
conf_zone_get
(
conf
,
C_DNSSEC_POLICY
,
zone
->
name
);
conf_val_t
val
=
conf_id_get
(
conf
,
C_POLICY
,
C_CHILD_RECORDS
,
&
id
);
if
(
conf_opt
(
&
val
)
!=
CHILD_RECORDS_NONE
)
{
log_zone_notice
(
zone
->
name
,
"DNSSEC, published CDS, CDNSKEY "
"for submission"
);
}
zone
->
timers
.
next_parent_ds_q
=
now
;
}
...
...
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