mirror of
https://github.com/etlegacy/etlegacy-tools.git
synced 2024-11-10 06:42:02 +00:00
12 lines
222 B
Bash
12 lines
222 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#
|
||
|
# ET:Legacy GeoIP.dat updater - Update archives on mirror.etlegacy.com/geoip
|
||
|
#
|
||
|
|
||
|
curl -O https://mailfud.org/geoip-legacy/GeoIP.dat.gz
|
||
|
gunzip -f GeoIP.dat.gz
|
||
|
tar -czf GeoIP.dat.tar.gz GeoIP.dat
|
||
|
rm GeoIP.dat
|
||
|
|