scripts: Use latest geoip database instead of using location

Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
David Goulet 2023-06-01 09:32:11 -04:00
parent 7f5355826b
commit 2697723cf1

View File

@ -5,7 +5,15 @@ set -e
DIR=$(cd "$(dirname "$0")" && pwd)
TMP=$(mktemp -d)
location --quiet update
DB_PATH="/var/lib/location/database.db"
# In case it exists as a dead symlink.
if [ -e "$DB_PATH" ]; then
unlink "$DB_PATH"
fi
curl -o "$DB_PATH.xz" "https://location.ipfire.org/databases/1/location.db.xz"
xz -d "$DB_PATH.xz"
location dump "$TMP/geoip-dump.txt"
OLDDIR=$(pwd)