]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/initscripts/networking/red.up/99-geoip-database
Merge branch 'switch-to-libloc' into next-switch-to-libloc
[people/pmueller/ipfire-2.x.git] / src / initscripts / networking / red.up / 99-geoip-database
diff --git a/src/initscripts/networking/red.up/99-geoip-database b/src/initscripts/networking/red.up/99-geoip-database
deleted file mode 100644 (file)
index 9b024a8..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-# Get the GeoIP database if no one exists yet
-
-database_exists() {
-       local file
-       for file in /usr/share/xt_geoip/*.iv4; do
-               [ -e "${file}" ] && return 0
-       done
-
-       # Does not exist
-       return 1
-}
-
-# Download ruleset if none has been found.
-if ! database_exists; then
-       /usr/local/bin/xt_geoip_update >/dev/null 2>&1 &
-fi
-
-exit 0