mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
yum: handle "_none_" value for proxy (#56725)
* yum: handle "_none_" value for proxy Fixes #56538 * Fix sanity check
This commit is contained in:
@@ -728,7 +728,8 @@ class YumModule(YumDnf):
|
||||
scheme = ["http", "https"]
|
||||
old_proxy_env = [os.getenv("http_proxy"), os.getenv("https_proxy")]
|
||||
try:
|
||||
if my.conf.proxy:
|
||||
# "_none_" is a special value to disable proxy in yum.conf/*.repo
|
||||
if my.conf.proxy and my.conf.proxy not in ("_none_",):
|
||||
if my.conf.proxy_username:
|
||||
namepass = namepass + my.conf.proxy_username
|
||||
proxy_url = my.conf.proxy
|
||||
|
||||
Reference in New Issue
Block a user