Skip to content
Snippets Groups Projects
Commit 9e123f7a authored by Libor Peltan's avatar Libor Peltan
Browse files

Merge branch 'zonedb-catalog-checks' into 'master'

Zonedb catalog checks

See merge request !1245
parents 0e7fd384 d526376f
No related branches found
No related tags found
1 merge request!1245Zonedb catalog checks
Pipeline #74884 passed
......@@ -412,7 +412,7 @@ static zone_t *add_member_zone(catalog_upd_val_t *val, knot_zonedb_t *check,
}
if (knot_zonedb_find(check, val->member) != NULL) {
log_zone_warning(val->member, "zone already configured, skipping creation");
log_zone_error(val->member, "zone already configured, ignoring");
return NULL;
}
......@@ -502,11 +502,13 @@ static knot_zonedb_t *create_zonedb(conf_t *conf, server_t *server, list_t *expi
const knot_dname_t *member = NULL, *catzone = NULL;
catalog_curval(&server->catalog, &member, NULL, &catzone);
// Check if there is a catalog zone for this member zone.
if (!conf_rawid_exists(conf, C_ZONE, catzone, knot_dname_size(catzone))) {
knot_dname_txt_storage_t cat_str;
(void)knot_dname_to_str(cat_str, catzone, sizeof(cat_str));
log_zone_error(member, "catalog zone '%s' not configured", cat_str);
log_zone_error(member, "catalog template zone '%s' not configured, ignoring", cat_str);
continue;
} else if (conf_rawid_exists(conf, C_ZONE, member, knot_dname_size(member))) {
log_zone_error(member, "non-catalog zone already configured, ignoring");
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment