aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/ntop/ntop-update-geoip-db
diff options
context:
space:
mode:
Diffstat (limited to 'unmaintained/ntop/ntop-update-geoip-db')
-rw-r--r--unmaintained/ntop/ntop-update-geoip-db21
1 files changed, 21 insertions, 0 deletions
diff --git a/unmaintained/ntop/ntop-update-geoip-db b/unmaintained/ntop/ntop-update-geoip-db
new file mode 100644
index 0000000000..2bf3faaf68
--- /dev/null
+++ b/unmaintained/ntop/ntop-update-geoip-db
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+BASE_URL=http://geolite.maxmind.com/download/geoip/database
+
+echo "Updating NTOP GeoIP databases..."
+
+cd /var/lib/ntop || exit
+
+for u in asnum/GeoIPASNum.dat.gz GeoLiteCity.dat.gz ; do
+ FILE_GZ=${u#*/}
+ FILE=${FILE_GZ%.gz}
+ wget -nv -O ${FILE_GZ} ${BASE_URL}/${u} &&
+ gunzip < ${FILE_GZ} > .${FILE} &&
+ mv -f .${FILE} ${FILE} &&
+ rm -f ${FILE_GZ} ||
+ exit
+done
+
+/etc/init.d/ntop --quiet status && /etc/init.d/ntop restart
+
+echo "NTOP GeoIP databases were successfully updated"