* [PATCH] update-location-database: Only update database once a week.
@ 2020-07-28 20:02 Stefan Schantl
0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2020-07-28 20:02 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2134 bytes --]
Ensure to download and update the database only once a week, even the
script will be called by cron each hour.
Also detect of the database has been changed and only in this case
re-export the database.
Fixes #12462.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/scripts/update-location-database | 32 +++++++++++++++++++++++-----
1 file changed, 27 insertions(+), 5 deletions(-)
diff --git a/src/scripts/update-location-database b/src/scripts/update-location-database
index d830286ce..b3eb27c92 100644
--- a/src/scripts/update-location-database
+++ b/src/scripts/update-location-database
@@ -21,6 +21,19 @@
eval $(/usr/local/bin/readhash /var/ipfire/proxy/settings)
+DB_FILE="/var/lib/location/database.db"
+UPDATE_INTERVAL="weekly"
+
+# Tiny function to get the current timestamp of the database file.
+function get_db_timestamp {
+ local timestamp=`stat -c "%Y" $DB_FILE`
+
+ echo $timestamp
+}
+
+# Get database timestamp.
+database_timestamp=$(get_db_timestamp)
+
# Proxy settings.
# Check if a proxy should be used.
if [[ $UPSTREAM_PROXY ]]; then
@@ -39,11 +52,20 @@ if [[ $UPSTREAM_PROXY ]]; then
fi
# Get the latest location database from server.
-if /usr/bin/location update; then
- # Call location and export all countries in xt_geoip compatible format.
- if /usr/bin/location export --directory=/usr/share/xt_geoip --family=ipv4 --format=xt_geoip; then
+if /usr/bin/location update --cron=$UPDATE_INTERVAL; then
+ # Grab timestamp of the database again.
+ new_database_timestamp=$(get_db_timestamp)
- # Call initscript to reload the firewall.
- /etc/init.d/firewall reload
+ # Check if the timestamps are different.
+ # In this case it needs to be exported again.
+ if [ ! $database_timestamp eq $new_database_timestamp ]; then
+ # Call location and export all countries in xt_geoip compatible format.
+ if /usr/bin/location export --directory=/usr/share/xt_geoip --family=ipv4 --format=xt_geoip; then
+
+ # Call initscript to reload the firewall.
+ /etc/init.d/firewall reload
+ fi
fi
fi
+
+
--
2.20.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-07-28 20:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-28 20:02 [PATCH] update-location-database: Only update database once a week Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox