Custom Query (894 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


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:

  1. Upgrade to trunk ([0d2e433555ffb7058bda65e92cf95b36f4368442] (SVN r5474))
  2. fire up bcfg2-info
    # bcfg2-info 
    {'profile': False, 'help': False, 'encoding': 'ascii', 'args': [], 'repo': '/var/lib/bcfg2', 'configfile': '/etc/bcfg2.conf', 'plugins': ['Base', 'Bundler', 'Cfg', 'Metadata', 'Packages', 'Rules', 'Snapshots', 'SSHbase'], 'password': 'uo2HwngH', 'event debug': False}
    Loading experimental plugin(s): Snapshots Packages
    NOTE: Interfaces subject to change
    Handled 33 events in 0.049s
    > 
    
  3. Enter debug mode
    > debug
    dropping to python interpreter; run loop.do_loop() to resume
    >>>
    
  4. Try to Ctrl+D to exit debug mode
#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.