From: Michael Tremer <michael.tremer@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH 08/10] importer: Fix reading Geofeeds from remarks
Date: Tue, 27 Sep 2022 16:48:45 +0000 [thread overview]
Message-ID: <20220927164847.3409646-8-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20220927164847.3409646-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 826 bytes --]
Only RIPE has a dedicated geofeed field. For others, this data needs to
be read from the remarks section.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/scripts/location-importer.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/scripts/location-importer.in b/src/scripts/location-importer.in
index 7e2136e..0e2764e 100644
--- a/src/scripts/location-importer.in
+++ b/src/scripts/location-importer.in
@@ -863,8 +863,8 @@ class CLI(object):
inetnum["geofeed"] = val
# Parse geofeed when used as a remark
- elif key == "remark":
- m = re.match(r"^(?:geofeed|Geofeed)\s+(https://.*)", val)
+ elif key == "remarks":
+ m = re.match(r"^(?:Geofeed)\s+(https://.*)", val)
if m:
inetnum["geofeed"] = m.group(1)
--
2.30.2
next prev parent reply other threads:[~2022-09-27 16:48 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-27 16:48 [PATCH 01/10] importer: Store geofeed URLs from RIR data Michael Tremer
2022-09-27 16:48 ` [PATCH 02/10] importer: Add command to import geofeeds into the database Michael Tremer
2022-09-27 16:48 ` [PATCH 03/10] importer: Just fetch any exception from the executor Michael Tremer
2022-09-27 16:48 ` [PATCH 04/10] importer: Sync geofeeds Michael Tremer
2022-09-27 16:48 ` [PATCH 05/10] importer: Use geofeeds for country assignment Michael Tremer
2022-09-27 16:48 ` [PATCH 06/10] importer: Use a GIST index for networks from geofeeds Michael Tremer
2022-09-27 16:48 ` [PATCH 07/10] importer: Add a search index match geofeed networks quicker Michael Tremer
2022-09-27 16:48 ` Michael Tremer [this message]
2022-09-27 16:48 ` [PATCH 09/10] importer: Ensure that we only use HTTPS URLs for Geofeeds Michael Tremer
2022-09-27 16:48 ` [PATCH 10/10] importer: Validate country codes from Geofeeds Michael Tremer
2022-10-28 20:29 ` [PATCH 01/10] importer: Store geofeed URLs from RIR data Peter Müller
2022-10-29 11:43 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220927164847.3409646-8-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox