With satellite 5.3 we will start using cobbler, and it would be nice to grab the cobbler stuff as well if we add a '--satellite' feature to sos. +++ This bug was initially created as a clone of Bug #495928 +++ Since we're using cobbler now, we need to grab: /etc/cobbler /var/log/cobbler /var/lib/rhn/kickstarts /var/lib/cobbler/snippits /var/lib/cobbler/config /var/lib/cobbler/kickstarts /var/lib/cobbler/triggers make sure we grab the cobbler httpd config files as well.
import sos.plugintools import os class cobbler(sos.plugintools.PluginBase): """cobbler related information """ def checkenabled(self): if self.isInstalled("cobbler"): return True return False def setup(self): self.addCopySpec("/etc/cobbler") self.addCopySpec("/var/log/cobbler") self.addCopySpec("/var/lib/rhn/kickstarts") self.addCopySpec("/var/lib/cobbler") return What httpd files should I capture? Thanks, Adam
So generally the http files that we'd want to capture should already be captured by the --satellite sos option (if/when we have one): /etc/httpd/conf.d/* /etc/httpd/conf/httpd.conf /var/log/http/* Justin
An advisory has been issued which should help the problem described in this bug report. This report is therefore being closed with a resolution of ERRATA. For more information on therefore solution and/or where to find the updated files, please follow the link below. You may reopen this bug report if the solution does not work for you. http://rhn.redhat.com/errata/RHBA-2010-0201.html