]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/scripts/update-location-database
update-location-database: Automatically export database after update.
[people/pmueller/ipfire-2.x.git] / src / scripts / update-location-database
CommitLineData
8aea1589
SS
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2019 IPFire Development Team <info@ipfire.org> #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
22eval $(/usr/local/bin/readhash /var/ipfire/proxy/settings)
23
24# Proxy settings.
25# Check if a proxy should be used.
26if [[ $UPSTREAM_PROXY ]]; then
27 PROXYSETTINGS="https_proxy=http://"
28
29 # Check if authentication against the proxy is configured.
30 if [[ $UPSTREAM_USER && $UPSTREAM_PASSWORD ]]; then
31 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_USER:$UPSTREAM_PASSWORD@"
32 fi
33
34 # Add proxy server.
35 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_PROXY"
36
37 # Export proxy settings.
38 export HTTPS_PROXY="$PROXYSETTINGS"
39fi
40
41# Get the latest location database from server.
36331a6a
SS
42if /usr/bin/location update; then
43 # Call location and export all countries in xt_geoip compatible format.
44 if /usr/bin/location export --directory=/usr/share/xt_geoip --family=ipv4 --format=xt_geoip; then
8aea1589 45
36331a6a
SS
46 # Call initscript to reload the firewall.
47 /etc/init.d/firewall reload
48 fi
9a240b71 49fi