From f1d863eadd8790d73ac563ff067e58c8581e432a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Jorge?= Date: Tue, 4 Jun 2013 19:47:23 +0000 Subject: version 0.3.3 : add squid proxy support --- VERSION | 2 +- urpmi-proxy.cgi | 2 ++ urpmi-proxy.conf | 3 +++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index d15723f..1c09c74 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.2 +0.3.3 diff --git a/urpmi-proxy.cgi b/urpmi-proxy.cgi index f439100..38c57ba 100755 --- a/urpmi-proxy.cgi +++ b/urpmi-proxy.cgi @@ -6,6 +6,7 @@ use strict; use warnings; my $debug = 0; +my $proxy = 0; my $config_file = '/etc/urpmi-proxy.conf'; # config defaults @@ -293,6 +294,7 @@ foreach my $source (@sources) { $curl->setopt(CURLOPT_TIMEVALUE, $modified_since); } $curl->setopt(CURLOPT_USERAGENT, $user_agent) if $user_agent; + $curl->setopt(CURLOPT_PROXY, $proxy) if $proxy; $curl->setopt(CURLOPT_CONNECTTIMEOUT, $connect_timeout); $curl->setopt(CURLOPT_FTP_RESPONSE_TIMEOUT, $ftp_response_timeout); $curl->setopt(CURLOPT_LOW_SPEED_LIMIT, $max_stall_speed); diff --git a/urpmi-proxy.conf b/urpmi-proxy.conf index 780469d..1775653 100644 --- a/urpmi-proxy.conf +++ b/urpmi-proxy.conf @@ -20,6 +20,9 @@ # 'urpmi' # ]; +## Define your proxy if needed in form 'hostname:port' +# $proxy = ''; + ## Location of the logfile, it's a request log with cache status results. # $logfile = '/var/log/urpmi-proxy.log'; -- cgit v1.2.1