]> git.ipfire.org Git - ipfire-2.x.git/blob - src/scripts/update-location-database
ebed5a095bd6b609f9f61f3d24ab075afda86d73
[ipfire-2.x.git] / src / scripts / update-location-database
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
22 eval $(/usr/local/bin/readhash /var/ipfire/proxy/settings)
23
24 # Proxy settings.
25 # Check if a proxy should be used.
26 if [[ $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"
39 fi
40
41 # Get the latest location database from server.
42 /usr/bin/location-downloader update
43
44 # Call initscript to reload the firewall.
45 /etc/init.d/firewall reload