From 79e1857888a1d2d6033ae399c258902e1b552c60 Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Thu, 26 Sep 2024 01:43:21 +0300 Subject: [PATCH] Exclude regexp domains after the domain is plain-ified --- scripts/getzones.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/getzones.awk b/scripts/getzones.awk index 494f457..fd2b44c 100644 --- a/scripts/getzones.awk +++ b/scripts/getzones.awk @@ -1,5 +1,3 @@ -@include "config/exclude-regexp-dist.awk" - # Skipping empty strings (!$1) {next} @@ -23,6 +21,8 @@ {$1 = gensub(/(.+)\.([^.]+\.[^.]+$)/, "\\2", 1)} } +@include "config/exclude-regexp-dist.awk" + # Sorting domains {d_other[$1] = $1}