Blame 0033-url-lib-url-lib.sh-add-proxy-support-for-curl.patch

fe31f86
From 6ecb9a2d68436fd5772d3be0b024852efabe466b Mon Sep 17 00:00:00 2001
fe31f86
From: Harald Hoyer <harald@redhat.com>
fe31f86
Date: Mon, 11 Feb 2013 13:56:04 +0100
fe31f86
Subject: [PATCH] url-lib/url-lib.sh: add proxy support for curl
fe31f86
fe31f86
---
fe31f86
 modules.d/45url-lib/url-lib.sh | 3 +++
fe31f86
 1 file changed, 3 insertions(+)
fe31f86
fe31f86
diff --git a/modules.d/45url-lib/url-lib.sh b/modules.d/45url-lib/url-lib.sh
fe31f86
index 72c865f..1f8218d 100755
fe31f86
--- a/modules.d/45url-lib/url-lib.sh
fe31f86
+++ b/modules.d/45url-lib/url-lib.sh
fe31f86
@@ -57,6 +57,9 @@ mkdir -p $CURL_HOME
fe31f86
 curl_args="--location --retry 3 --fail --show-error"
fe31f86
 getargbool 0 rd.noverifyssl && curl_args="$curl_args --insecure"
fe31f86
 
fe31f86
+proxy=$(getarg proxy=)
fe31f86
+[ -n "$proxy" ] && curl_args+="$curl_args --proxy $proxy"
fe31f86
+
fe31f86
 curl_fetch_url() {
fe31f86
     local url="$1" outloc="$2"
fe31f86
     echo "$url" > /proc/self/fd/0