X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff_plain;f=src%2Fscripts%2Fupdate-location-database;fp=src%2Fscripts%2Fupdate-location-database;h=0000000000000000000000000000000000000000;hp=ebed5a095bd6b609f9f61f3d24ab075afda86d73;hb=3a380f87c7b914edc41cfd01b8106254f85e27e7;hpb=834b933ca5f9e3c969f7891cb0588b752cbe24e5 diff --git a/src/scripts/update-location-database b/src/scripts/update-location-database deleted file mode 100644 index ebed5a095b..0000000000 --- a/src/scripts/update-location-database +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2019 IPFire Development Team # -# # -# This program is free software: you can redistribute it and/or modify # -# it under the terms of the GNU General Public License as published by # -# the Free Software Foundation, either version 3 of the License, or # -# (at your option) any later version. # -# # -# This program is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with this program. If not, see . # -# # -############################################################################### - -eval $(/usr/local/bin/readhash /var/ipfire/proxy/settings) - -# Proxy settings. -# Check if a proxy should be used. -if [[ $UPSTREAM_PROXY ]]; then - PROXYSETTINGS="https_proxy=http://" - - # Check if authentication against the proxy is configured. - if [[ $UPSTREAM_USER && $UPSTREAM_PASSWORD ]]; then - PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_USER:$UPSTREAM_PASSWORD@" - fi - - # Add proxy server. - PROXYSETTINGS="$PROXYSETTINGS$UPSTREAM_PROXY" - - # Export proxy settings. - export HTTPS_PROXY="$PROXYSETTINGS" -fi - -# Get the latest location database from server. -/usr/bin/location-downloader update - -# Call initscript to reload the firewall. -/etc/init.d/firewall reload