diff options
author | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-23 12:52:40 +0000 |
---|---|---|
committer | shnavid <shnavid@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-23 12:52:40 +0000 |
commit | f6729ef5549ad26fb4df5ff84c94f07efdb00533 (patch) | |
tree | 08af720df46a164b8cc3288554f2ff5da7ec60ff | |
parent | d40dab09ba602c1b08aac08495f825058c26e321 (diff) | |
download | sos-f6729ef5549ad26fb4df5ff84c94f07efdb00533.tar.gz |
Running "multipath" without arguments might change the device-mapper maps, which we want to avoid if things are broken.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@125 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/devicemapper.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/sos/plugins/devicemapper.py b/src/lib/sos/plugins/devicemapper.py index 90d83b14..bf56aee8 100644 --- a/src/lib/sos/plugins/devicemapper.py +++ b/src/lib/sos/plugins/devicemapper.py @@ -33,7 +33,6 @@ class devicemapper(sos.plugintools.PluginBase): self.addCopySpec("/etc/multipath.conf") self.addCopySpec("/var/lib/multipath/bindings") - self.collectExtOutput("/sbin/multipath -v4") - self.collectExtOutput("/sbin/multipath -ll") + self.collectExtOutput("/sbin/multipath -v4 -ll") return |