Custom Query (894 matches)
Results (70 - 72 of 894)
Ticket | Owner | Reporter | Resolution | Summary |
---|---|---|---|---|
#712 | desai | solj | fixed | pkgmgr_gen.py script patch (from David Strauss) |
Description |
+ url = urlparse.urljoin(repo, './repodata/repomd.xml') + + try: + opener = pkgmgr_URLopener() + file, message = opener.retrieve(url) + except: + sys.exit(); + + try: + tree = parse(file) + except IOError: + print "ERROR: Unable to parse retrieved repomd.xml." + sys.exit() + + repomd = tree.getroot() + for element in repomd: + if element.tag.endswith('data') and element.attrib['type'] == 'primary': + for property in element: + if property.tag.endswith('location'): + primaryhref = property.attrib['href'] + + url = urlparse.urljoin(repo, './' + primaryhref) |
|||
#755 | desai | solj | fixed | bcfg2-info hanging when debugging |
Description |
Steps to reproduce:
|
|||
#771 | desai | solj | fixed | Add SSL CA options to bcfg2.conf manpage |
Description |
Currently have to look for the options in Options.py |
Note: See TracQuery
for help on using queries.