mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 10:22:59 +02:00
99-geoip-database: Fix download
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@ipfire.org> Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
committed by
Arne Fitzenreiter
parent
bb64cd092c
commit
a3f4b8c6f7
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user