diff options
Diffstat (limited to 'sos/plugins/cgroups.py')
-rw-r--r-- | sos/plugins/cgroups.py | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/sos/plugins/cgroups.py b/sos/plugins/cgroups.py index 51dab130..225b0076 100644 --- a/sos/plugins/cgroups.py +++ b/sos/plugins/cgroups.py @@ -1,19 +1,20 @@ -### This program is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or -## (at your option) any later version. +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. -## This program is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. -## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin + class Cgroups(Plugin, DebianPlugin, UbuntuPlugin): """cgroup subsystem information """ @@ -29,6 +30,7 @@ class Cgroups(Plugin, DebianPlugin, UbuntuPlugin): ]) return + class RedHatCgroups(Cgroups, RedHatPlugin): """Red Hat specific cgroup subsystem information """ @@ -42,5 +44,5 @@ class RedHatCgroups(Cgroups, RedHatPlugin): "/etc/cgconfig.conf", "/etc/cgrules.conf" ]) - + # vim: et ts=4 sw=4 |