aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add sanlock moduleBryn M. Reeves2012-12-061-0/+36
|
* Fix comment and remove dead code in doExtOutputSubBryn M. Reeves2012-12-061-3/+2
|
* Test for existence of script in hardware moduleBryn M. Reeves2012-12-061-4/+4
| | | | | | Test for the existence of the hardware.py script in the RedHatHardware module instead of relying on an exception from the output gathering functions.
* Fix collectOutputNow to correctly log command execution errorsBryn M. Reeves2012-12-061-15/+11
| | | | | | When a command is not found log and exit from the function early. For all other statuses try to collect output anyway in case anything useful was written to stdout or stderr.
* Fix error message in Plugin base classBryn M. Reeves2012-12-061-3/+6
|
* Fix whitespace and long lines in cluster moduleBryn M. Reeves2012-12-051-42/+58
|
* Obscure password in corosync-objctl outputBryn M. Reeves2012-12-051-0/+1
|
* Rename regex substitution functionsBryn M. Reeves2012-12-0513-21/+21
| | | | | Rename doRegexSub and doRegexExtOutputSub to doFileSub and doExtOutputSub respectively.
* Add implementation of command output post-processingBryn M. Reeves2012-12-052-1/+31
| | | | | | Add a doRegexExtOutputSub() function to mirror doRegExSub(). This allows modukes ti apply an arbitrary regular expression substitution to the output collected from external commands.
* Add fence_virt.conf and corosync command outputs to clusterBryn M. Reeves2012-12-051-0/+5
| | | | Update cluster module to match current rhel-6
* Add missing import statement to libvirt moduleBryn M. Reeves2012-12-051-0/+1
|
* Obscure display passwords in collected libvirt/qemu filesBryn M. Reeves2012-12-051-0/+6
|
* Remove duplicate gluster moduleBryn M. Reeves2012-12-051-26/+0
| | | | | Remove duplicate gluster module accidentally committed while forward porting the current rhel-6 version.
* Collect /proc/pagetypeinfo in memory moduleBryn M. Reeves2012-12-041-1/+2
|
* Fix error logging when calling external programsBryn M. Reeves2012-12-041-0/+2
|
* Avoid deprecated sysctls in /proc/sys/netBryn M. Reeves2012-12-041-0/+6
|
* Collect /etc/multipath in device-mapper moduleBryn M. Reeves2012-12-041-0/+1
|
* Obscure passwords in files collected from ipa moduleBryn M. Reeves2012-12-041-0/+6
|
* Use a default report name if name is empty after sanitizingBryn M. Reeves2012-12-041-0/+3
|
* Update IPA module and related plug-insBryn M. Reeves2012-12-044-7/+91
|
* Collect mcelog files in the hardware moduleBryn M. Reeves2012-12-041-1/+2
|
* Use wildcard to match possible libvirt log pathsBryn M. Reeves2012-12-041-1/+1
|
* Update gluster module to match current rhel-6Bryn M. Reeves2012-12-041-3/+97
|
* Update cloudforms module to match current rhel-6Bryn M. Reeves2012-12-041-5/+13
|
* Clean up kernel_rt moduleBryn M. Reeves2012-12-042-5/+5
| | | | | Rename the realtime kernel module to "kernelrt" and move non-realtime specific information to more appropriate modules.
* Improve sanitization of user and case number in LinuxPolicyBryn M. Reeves2012-12-041-4/+9
|
* Fix verbose loggingBryn M. Reeves2012-12-042-2/+7
| | | | | Propagate soslog and proflog objects to plugins properly and ensure debug logging makes it to sos.log when verbose mode is enabled.
* Don't handle plugin exceptions in import_pluginBryn M. Reeves2012-12-041-7/+4
| | | | | | Don't catch exceptions thrown during plugin import from import_plugin itself. The main load_plugins in sosreport.py already handles exception logging and trapping them here loses useful information.
* Add basic support for CloudForms data collectionBryn M. Reeves2012-12-041-0/+29
|
* Add new sunrpc module to collect rpcinfo for gluster systemsBryn M. Reeves2012-12-041-0/+30
|
* Obscure root password if present in anacond-ks.cfgBryn M. Reeves2012-12-041-0/+5
|
* Use correct paths for tomcat6 in RHN moduleBryn M. Reeves2012-12-041-5/+2
|
* Shorten long lines in general moduleBryn M. Reeves2012-12-041-3/+5
|
* Collect non-standard syslog and rsyslog log filesBryn M. Reeves2012-12-041-5/+13
|
* Add symbolic links for truncated log filesBryn M. Reeves2012-12-041-3/+6
|
* Fix installed-rpms commandBryn M. Reeves2012-11-301-1/+6
| | | | | | | Fix the formatting of rpm -q output to ensure that long package do not overflow into the following column and quote tilde chars passed to the shell to prevent user home directory expansion side-effects.
* Collect /proc/irq in hardware moduleBryn M. Reeves2012-11-301-0/+1
|
* Collect stderr output from external commandsBryn M. Reeves2012-11-301-2/+2
|
* Fix satellite and proxy package detection in rhn pluginBryn M. Reeves2012-11-301-4/+4
|
* Fix symlink directory check and tidy up copy_symlink()Bryn M. Reeves2012-11-301-24/+21
| | | | | Fix the check on symlinks pointing to a directory (it needs to use an absolute path) and simplify the function and variable names.
* Fix symlink handling in doCopyFileOrDir()Bryn M. Reeves2012-11-301-15/+34
| | | | | | | | | | | | | | | | | | Symlinks need special treatment when we're copying them into the report. The target path stored in the report must always be relative but we need to pass an absolute path for the target to the recursive doCopyFileOrDir() call that picks up the target for us. There are further problems with the current code but these cannot be fixed trivially: symbolic links to directories are currently ignored but are fundamental to the layout of file systems like sys (and to a lesser extent proc). Supporting this properly requires an algorithm that can cope with arbitrary symlink loops in the tree being copied and that correctly copies-in any links that may point outside of the tree currently being copied. See Issues #71, #72 for more details.
* Add cpu power information to hardware moduleBryn M. Reeves2012-11-291-0/+6
| | | | Collect cpupower or cpufreq-info information if either is installed.
* Fix collection of /proc/net in networking moduleBryn M. Reeves2012-11-291-1/+1
|
* Collect /etc/fence_virt.conf in cluster moduleBryn M. Reeves2012-11-291-0/+1
|
* Don't collect subscription manager keys in yum module (CVE-2011-4083)Bryn M. Reeves2012-11-291-0/+1
|
* Fix hardware module to handle multiple lsusb pathsBryn M. Reeves2012-11-291-3/+9
| | | | | The usbutils package moved lsusb from /usr/sbin to /usr/bin. Allow the module to work with either.
* Collect brctl show and showstp outputBryn M. Reeves2012-11-291-0/+23
|
* Collect rhsm configuration in yum moduleBryn M. Reeves2012-11-291-1/+2
|
* Fix whitespace in jboss moduleBryn M. Reeves2012-11-291-3/+3
|
* Add package check to postgresql moduleBryn M. Reeves2012-11-291-0/+4
| | | | | | Add a packages list to the postgresql module to prevent it trying to run on systems where the package is not installed and set the tmp_dir variable to None.