From e201c1810c4b84f18efbde98bfe00845739ffaa5 Mon Sep 17 00:00:00 2001 From: navid Date: Fri, 14 Dec 2007 09:48:19 +0000 Subject: added i18n plugin from Qian Shen updated contributors in README git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@472 ef72aa8b-4018-0410-8976-d6e080ef94d8 --- src/lib/sos/plugins/i18n.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/lib/sos/plugins/i18n.py (limited to 'src/lib') diff --git a/src/lib/sos/plugins/i18n.py b/src/lib/sos/plugins/i18n.py new file mode 100644 index 00000000..0a793d0f --- /dev/null +++ b/src/lib/sos/plugins/i18n.py @@ -0,0 +1,26 @@ +### 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. + +import sos.plugintools +import os + +class i18n(sos.plugintools.PluginBase): + """i18n related information + """ + def setup(self): + self.addCopySpec("/etc/sysconfig/i18n") + self.addCopySpec("/etc/X11/xinit/xinput.d/*") + self.collectExtOutput("/usr/bin/locale") + return + -- cgit