diff options
author | Jens Vehlhaber <jens@eisfair.org> | 2016-02-15 07:20:47 +0100 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-02-22 14:33:48 +0000 |
commit | bdd0013fdbf7e436512b3e0ef1d7d2c4befac656 (patch) | |
tree | d37e0a29522e784e18beafb83ae936f6e4879caa /main/geoip/geoip.cron | |
parent | 7ac7e0c24e77c4b11ee02fe92537c5ce3fd2cf65 (diff) | |
download | aports-bdd0013fdbf7e436512b3e0ef1d7d2c4befac656.tar.bz2 aports-bdd0013fdbf7e436512b3e0ef1d7d2c4befac656.tar.xz |
main/geoip: bugfix get new GeoIP.dat file
Signed-off-by: Jens Vehlhaber <jens@eisfair.org>
Diffstat (limited to 'main/geoip/geoip.cron')
-rwxr-xr-x | main/geoip/geoip.cron | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/geoip/geoip.cron b/main/geoip/geoip.cron index b7c2ffd4d0..fc96d08a82 100755 --- a/main/geoip/geoip.cron +++ b/main/geoip/geoip.cron @@ -1,2 +1,2 @@ #!/bin/sh -wget -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /tmp/GeoIP.dat.gz && gunzip tmp/GeoIP.dat.gz && mv tmp/GeoIP.dat.gz /usr/share/GeoIP +wget -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz -O /tmp/GeoIP.dat.gz && gunzip /tmp/GeoIP.dat.gz && mv /tmp/GeoIP.dat /usr/share/GeoIP |