aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierguido Lambri <plambri@redhat.com>2011-12-16 13:17:30 -0600
committerJesse Jaggars <jhjaggars@gmail.com>2011-12-16 13:21:48 -0600
commit99cb816cf5a7fb124ae2a266519a39faade42b8d (patch)
tree50ec37a404c80bdfba5eeac515cb41514608b3b7
parenta18298e82e2241a5d53405c6bd0dda99cf911594 (diff)
downloadsos-99cb816cf5a7fb124ae2a266519a39faade42b8d.tar.gz
Adding NIS plugin
-rw-r--r--sos/plugins/nis.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/sos/plugins/nis.py b/sos/plugins/nis.py
new file mode 100644
index 00000000..bd45e3d5
--- /dev/null
+++ b/sos/plugins/nis.py
@@ -0,0 +1,29 @@
+## nis.py
+## A plugin to gather all the NIS information
+
+### 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
+import os
+
+class nis(Plugin, RedHatPlugin):
+ """NIS related information
+ """
+ def checkenabled(self):
+ return os.path.exists("/var/yp")
+
+ def setup(self):
+ self.addCopySpec("/etc/yp*.conf")
+ self.addCopySpec("/var/yp/*")