mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 21:25:12 +02:00

Requires Net::CIDR::Lite for manipulating CIDR blocks, aggregation, etc. since database is stored as subnet/mask pairs and may require compaction into ranges (which can combine adjacent subnets). We don't use Net::CIDR because it's a clunkier interface. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf GeoLite2-Country-CSV_*
|
|
|
|
wget -q http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country-CSV.zip
|
|
unzip -q GeoLite2-Country-CSV.zip
|
|
rm -f GeoLite2-Country-CSV.zip
|