diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2019-02-25 11:50:50 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-02-25 17:58:43 +0000 |
commit | 36a82723dfc2734b18eede4b75708595345c9d7a (patch) | |
tree | 250352bdf8edb3f3d539b80a1ddd6368b12114b6 | |
parent | 33054e81f50d501f1352028a5c4b44f785d7d9b7 (diff) | |
download | sos-36a82723dfc2734b18eede4b75708595345c9d7a.tar.gz |
[crio] Add tagging classes
Adds tagging classes so plugin will run on Red Hat and Ubuntu based
systems.
Resolves: #1578
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/plugins/crio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/crio.py b/sos/plugins/crio.py index f3e9d842..7afdf047 100644 --- a/sos/plugins/crio.py +++ b/sos/plugins/crio.py @@ -11,7 +11,7 @@ from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin -class CRIO(Plugin): +class CRIO(Plugin, RedHatPlugin, UbuntuPlugin): """CRI-O containers """ |