diff options
-rw-r--r-- | sos/plugins/ceph.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sos/plugins/ceph.py b/sos/plugins/ceph.py index e58e0f71..57797802 100644 --- a/sos/plugins/ceph.py +++ b/sos/plugins/ceph.py @@ -19,13 +19,17 @@ class Ceph(Plugin, RedHatPlugin, UbuntuPlugin): """ plugin_name = 'ceph' - option_list = [("log", "gathers all ceph logs", "slow", False)] - - packages = ('ceph', - 'ceph-mds', - 'ceph-common', - 'libcephfs1', - 'ceph-fs-common') + option_list = [ + ("log", "gathers all ceph logs", "slow", False) + ] + + packages = ( + 'ceph', + 'ceph-mds', + 'ceph-common', + 'libcephfs1', + 'ceph-fs-common' + ) def setup(self): self.add_copy_specs([ |