mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-15 04:51:19 +02:00
7 lines
231 B
Bash
7 lines
231 B
Bash
#!/bin/sh
|
|
#http://www.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
|
|
cd /tmp
|
|
fetch http://64.246.48.99/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
|
|
gunzip GeoIP.dat.gz
|
|
mv -f GeoIP.dat /usr/local/share/GeoIP
|