Skip to content
Snippets Groups Projects
Commit 02faa275 authored by Libor Peltan's avatar Libor Peltan Committed by Daniel Salzman
Browse files

dnssec: warn when rrsig-refresh configured explicitly

parent d8b1e148
Branches
Tags
1 merge request!1404Rrsig-refresh2
Pipeline #92316 passed with stages
in 5 minutes and 9 seconds
......@@ -573,6 +573,10 @@ int check_policy(
return KNOT_EINVAL;
}
if (refresh.code == KNOT_EOK) {
CONF_LOG(LOG_WARNING, "rrsig-refresh option is deprecated and will be calculated from TTLs and propagation-delay");
}
int64_t ksk_size = conf_int(&ksk);
if (ksk_size != YP_NIL && !dnssec_algorithm_key_size_check(algorithm, ksk_size)) {
args->err_str = "KSK key size not compatible with the algorithm";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment