diff options
-rw-r--r-- | sos/plugins/devicemapper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/devicemapper.py b/sos/plugins/devicemapper.py index aac90193..fbfe84d6 100644 --- a/sos/plugins/devicemapper.py +++ b/sos/plugins/devicemapper.py @@ -19,8 +19,8 @@ class devicemapper(Plugin, RedHatPlugin): """device-mapper related information (dm, lvm, multipath) """ - option_list = [("lvmdump", 'collect raw metadata from PVs', 'slow', False)] - option_list = [("lvmdump-a", 'use the -a option of lvmdump (requires the "lvmdump" option)', 'slow', False)] + option_list = [("lvmdump", 'collect raw metadata from PVs', 'slow', False), + ("lvmdump-a", 'use the -a option of lvmdump (requires the "lvmdump" option)', 'slow', False)] dmraid_options = ['V','b','r','s','tay','rD'] def do_lvmdump(self): |