Custom Query (894 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 894)

Ticket Owner Reporter Resolution Summary
#562 solj solj fixed Summary Displays view shows incorrect extra configuration information
Description

All hosts are displayed as having extra configuration entries despite the fact that they do not.

#571 desai solj fixed SGenshi left out of encoding update
Description

This should help

Index: src/lib/Server/Plugins/SGenshi.py
===================================================================
--- src/lib/Server/Plugins/SGenshi.py   (revision 4739)
+++ src/lib/Server/Plugins/SGenshi.py   (working copy)
@@ -16,7 +16,7 @@
         return lxml.etree.XML(data)
 
 class SGenshiEntrySet(Bcfg2.Server.Plugin.EntrySet):
-    def __init__(self, path, fam):
+    def __init__(self, path, fam, encoding):
         fpattern = '\S+\.xml'
         try:
             properties = Bcfg2.Server.Plugin.TemplateProperties( \
@@ -24,8 +24,8 @@
         except:
             properties = Bcfg2.Server.Plugin.FakeProperties()
 
-        Bcfg2.Server.Plugin.EntrySet.__init__(self, fpattern, path,
-                                              properties, SGenshiTemplateFile)
+        Bcfg2.Server.Plugin.EntrySet.__init__(self, fpattern, path, properties
+                                              SGenshiTemplateFile, encoding)
         fam.AddMonitor(path, self)
 
     def HandleEvent(self, event):
@@ -53,7 +53,7 @@
     def __init__(self, core, datastore):
         Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore)
         try:
-            SGenshiEntrySet.__init__(self, self.data, self.core.fam)
+            SGenshiEntrySet.__init__(self, self.data, self.core.fam, core.encoding)
         except:
             logger.error("Failed to load SGenshi repository; disabling SGenshi")
             raise Bcfg2.Server.Plugin.PluginInitError
#601 solj solj wontfix Incorrect Configuration Element Details
Description

The Reason for bad/modified elements is always showing up as nonexistent even if the file/package/etc exists but is just the wrong version.

Note: See TracQuery for help on using queries.