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 --- urpmi-proxy.cgi | 2 ++ 1 file changed, 2 insertions(+) (limited to 'urpmi-proxy.cgi') 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); -- cgit v1.2.1