From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] 99-geoip-database: Fix download
Date: Mon, 14 Oct 2019 16:43:58 +0000 [thread overview]
Message-ID: <20191014164358.17076-1-michael.tremer@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]
This script started a fresh download every time it was called,
which is unnecessary.
The check to skip the download did not work because it was
looking for the old data format.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
.../networking/red.up/99-geoip-database | 23 ++++++++-----------
1 file changed, 10 insertions(+), 13 deletions(-)
diff --git a/src/initscripts/networking/red.up/99-geoip-database b/src/initscripts/networking/red.up/99-geoip-database
index 335006a69..9b024a8d0 100644
--- a/src/initscripts/networking/red.up/99-geoip-database
+++ b/src/initscripts/networking/red.up/99-geoip-database
@@ -1,22 +1,19 @@
#!/bin/bash
-# Get the GeoIP database if no one exists yet.
+# Get the GeoIP database if no one exists yet
-DIR="/usr/share/xt_geoip/*"
+database_exists() {
+ local file
+ for file in /usr/share/xt_geoip/*.iv4; do
+ [ -e "${file}" ] && return 0
+ done
-found=false
-
-# Check if the directory contains any data.
-for i in $DIR; do
- # Ignore "." and ".."
- if [ -d "$i" ]; then
- found=true
- break
- fi
-done
+ # Does not exist
+ return 1
+}
# Download ruleset if none has been found.
-if ! ${found}; then
+if ! database_exists; then
/usr/local/bin/xt_geoip_update >/dev/null 2>&1 &
fi
--
2.20.1
reply other threads:[~2019-10-14 16:43 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191014164358.17076-1-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox