public inbox for location@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] location-importer.in: treat AQ and BV as invalid countries
@ 2021-04-01 19:57 Peter Müller
  2021-04-07 20:49 ` Michael Tremer
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Müller @ 2021-04-01 19:57 UTC (permalink / raw)
  To: location

[-- Attachment #1: Type: text/plain, Size: 1472 bytes --]

Both the Bouvet Island (BV) and Antarctica (AQ) are unpopulated at the
time of writing. Network owners/operators putting these countries into
their RIR data objects are either completely braindead or doing so for
hostile reasons.

While we might correct these locations to something useful by manually
creating overrides for them, the rationale behind this patch is not to
let these countries appear on productive systems in the first place, as
we know they _cannot_ be true.

Therefore, this patch skips any network object that has either AQ or BV
country code set.

See also: https://lists.ipfire.org/pipermail/location/2020-October/000199.html

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 src/python/location-importer.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index 1e08458..ac678dc 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -624,7 +624,7 @@ class CLI(object):
 			return
 
 		# Skip objects with unknown country codes
-		if validcountries and inetnum.get("country") not in validcountries:
+		if validcountries and (inetnum.get("country") not in validcountries or inetnum.get("country") in ["AQ", "BV"]):
 			log.warning("Skipping network with bogus country '%s': %s" % \
 				(inetnum.get("country"), inetnum.get("inet6num") or inetnum.get("inetnum")))
 			return
-- 
2.26.2

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-05-18 10:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-01 19:57 [PATCH] location-importer.in: treat AQ and BV as invalid countries Peter Müller
2021-04-07 20:49 ` Michael Tremer
2021-04-10 12:32   ` Peter Müller
2021-04-12  9:21     ` Michael Tremer
2021-04-12 17:26       ` Peter Müller
2021-04-14  8:58         ` Michael Tremer
2021-05-14 16:15           ` Peter Müller
2021-05-18 10:47             ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox