aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Hunt <james.hunt@ubuntu.com>2013-10-21 12:01:40 +0100
committerJames Hunt <james.hunt@ubuntu.com>2013-10-21 12:01:40 +0100
commit7ae46ebfb9028f921ff68b500f41c637cd90836c (patch)
tree3ad9730cd657ad0ed548de02fb15d11fab0e2924
parent6484ec4d04eba1d76535e7e87eb4e87a2db7a8ae (diff)
downloadsos-7ae46ebfb9028f921ff68b500f41c637cd90836c.tar.gz
Added plugin for procenv (process environment).
Signed-off-by: James Hunt <james.hunt@ubuntu.com>
-rw-r--r--sos/plugins/procenv.py25
1 files changed, 25 insertions, 0 deletions
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 <adam.stokes@canonical.com>
+## 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')