Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 693150 Details for
Bug 907707
RFE: Support repo --noverifyssl
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Interpret --noverifyssl and pass the option to yum
file_907707.txt (text/plain), 1.68 KB, created by
fedora.dm0
on 2013-02-05 03:59:36 UTC
(
hide
)
Description:
Interpret --noverifyssl and pass the option to yum
Filename:
MIME Type:
Creator:
fedora.dm0
Created:
2013-02-05 03:59:36 UTC
Size:
1.68 KB
patch
obsolete
>diff --git a/imgcreate/creator.py b/imgcreate/creator.py >index 64cd188..f688246 100644 >--- a/imgcreate/creator.py >+++ b/imgcreate/creator.py >@@ -627,7 +627,7 @@ class ImageCreator(object): > ayum.setup(yum_conf, self._instroot, cacheonly=self.cacheonly) > > for repo in kickstart.get_repos(self.ks, repo_urls): >- (name, baseurl, mirrorlist, proxy, inc, exc, cost) = repo >+ (name, baseurl, mirrorlist, proxy, inc, exc, cost, sslverify) = repo > > yr = ayum.addRepository(name, baseurl, mirrorlist) > if inc: >@@ -638,6 +638,7 @@ class ImageCreator(object): > yr.proxy = proxy > if cost is not None: > yr.cost = cost >+ yr.sslverify = sslverify > ayum.setup(yum_conf, self._instroot) > > if kickstart.exclude_docs(self.ks): >diff --git a/imgcreate/kickstart.py b/imgcreate/kickstart.py >index b12cd0c..5519796 100644 >--- a/imgcreate/kickstart.py >+++ b/imgcreate/kickstart.py >@@ -531,6 +531,7 @@ def get_repos(ks, repo_urls = {}): > baseurl = repo.baseurl > mirrorlist = repo.mirrorlist > proxy = repo.proxy >+ sslverify = not hasattr(repo, "noverifyssl") > > if repo.name in repo_urls: > baseurl = repo_urls[repo.name] >@@ -538,7 +539,7 @@ def get_repos(ks, repo_urls = {}): > > if repos.has_key(repo.name): > logging.warn("Overriding already specified repo %s" %(repo.name,)) >- repos[repo.name] = (repo.name, baseurl, mirrorlist, proxy, inc, exc, repo.cost) >+ repos[repo.name] = (repo.name, baseurl, mirrorlist, proxy, inc, exc, repo.cost, sslverify) > > return repos.values() >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 907707
:
693150
|
693152