Merge pull request #2228 from appwrite/chore-geodb-maxmind-2021-10

chore(geodb): update maxmind db to 2021-10
This commit is contained in:
Torsten Dittmann
2021-10-15 14:56:17 +02:00
committed by GitHub
4 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ then
exit 1
fi
if test $(find "./app/db/DBIP/dbip-country-lite-2021-06.mmdb" -mmin +259200)
if test $(find "./app/db/DBIP/dbip-country-lite-2021-10.mmdb" -mmin +259200)
then
printf "${RED}GEO country DB has not been updated for more than 6 months. Go to https://db-ip.com/db/download/ip-to-country-lite to download a newer version${NC}\n"
fi
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -254,7 +254,7 @@ $register->set('smtp', function () {
return $mail;
});
$register->set('geodb', function () {
return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2021-06.mmdb');
return new Reader(__DIR__.'/db/DBIP/dbip-country-lite-2021-10.mmdb');
});
/*