]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/scripts/update-location-database
suricata: Change midstream policy to "pass-flow"
[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 #
66c36198 5# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
8aea1589
SS
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
99659ce5
SS
24UPDATE_INTERVAL="weekly"
25
8aea1589
SS
26# Proxy settings.
27# Check if a proxy should be used.
28if [[ $UPSTREAM_PROXY ]]; then
29 PROXYSETTINGS="https_proxy=http://"
30
31 # Check if authentication against the proxy is configured.
32 if [[ $UPSTREAM_USER && $UPSTREAM_PASSWORD ]]; then
33 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_USER:$UPSTREAM_PASSWORD@"
34 fi
35
36 # Add proxy server.
37 PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_PROXY"
38
39 # Export proxy settings.
40 export HTTPS_PROXY="$PROXYSETTINGS"
41fi
42
43# Get the latest location database from server.
99659ce5 44if /usr/bin/location update --cron=$UPDATE_INTERVAL; then
edad13b4
SS
45 # Call location and export all countries in an ipset compatible format.
46 if /usr/bin/location export --directory=/var/lib/location/ipset --family=ipv4 --format=ipset; then
8aea1589 47
36331a6a
SS
48 # Call initscript to reload the firewall.
49 /etc/init.d/firewall reload
50 fi
9a240b71 51fi