From 7ae46ebfb9028f921ff68b500f41c637cd90836c Mon Sep 17 00:00:00 2001 From: James Hunt Date: Mon, 21 Oct 2013 12:01:40 +0100 Subject: Added plugin for procenv (process environment). Signed-off-by: James Hunt --- sos/plugins/procenv.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sos/plugins/procenv.py diff --git a/sos/plugins/procenv.py b/sos/plugins/procenv.py new file mode 100644 index 00000000..d413cd16 --- /dev/null +++ b/sos/plugins/procenv.py @@ -0,0 +1,25 @@ +## Copyright (c) 2012 Adam Stokes +## 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. + +## 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 Procenv(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): + """Process environment. + """ + + plugin_name = 'procenv' + + def setup(self): + self.add_cmd_output('procenv') -- cgit