[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH] Use global proxy setting if no repo proxy is set (#712926)
- From: David Lehman <dlehman redhat com>
- To: Discussion of Development and Customization of the Red Hat Linux Installer <anaconda-devel-list redhat com>
- Subject: Re: [PATCH] Use global proxy setting if no repo proxy is set (#712926)
- Date: Tue, 14 Jun 2011 17:24:56 -0500
On Tue, 2011-06-14 at 13:01 -0700, Brian C. Lane wrote:
> If there is no repo proxy set we should use the global setting.
>
> This fixes a problem for users who only have proxy access to the network
> -- previously it was trying to pull .treeinfo directly and timing out
> after 7 minutes.
Seems reasonable to me. Ack.
> ---
> pyanaconda/yuminstall.py | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/pyanaconda/yuminstall.py b/pyanaconda/yuminstall.py
> index 378d4a1..905e317 100644
> --- a/pyanaconda/yuminstall.py
> +++ b/pyanaconda/yuminstall.py
> @@ -868,7 +868,7 @@ class AnacondaYum(yum.YumBase):
> initialRepos = self.repos.repos.values() + extraRepos
> for repo in filter(lambda r: r.isEnabled(), initialRepos):
> addons = self._getAddons(repo.mirrorlist or repo.baseurl[0],
> - repo.proxy_url,
> + repo.proxy_url or self.proxy_url,
> repo.sslverify)
> for addon in addons:
> addonRepo = AnacondaYumRepo(addon[0])
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]