From 5fec1a3da441e69a292aa1d06c6ae582972a12c0 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Mon, 29 Apr 2013 19:33:10 +0100 Subject: Rename internationalization plug-in This partially reverts commit fbbb6ac. Renaming the module was a mistake; internationalization is just too long. Signed-off-by: Bryn M. Reeves --- sos/plugins/i18n.py | 25 +++++++++++++++++++++++++ sos/plugins/internationalization.py | 25 ------------------------- 2 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 sos/plugins/i18n.py delete mode 100644 sos/plugins/internationalization.py diff --git a/sos/plugins/i18n.py b/sos/plugins/i18n.py new file mode 100644 index 00000000..0361c55b --- /dev/null +++ b/sos/plugins/i18n.py @@ -0,0 +1,25 @@ +### 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 I18n(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): + """Internationalization related information + """ + + plugin_name = 'i18n' + + def setup(self): + self.add_copy_specs(["/etc/X11/xinit/xinput.d/*", "/etc/locale.conf"]) + self.add_cmd_output("locale") diff --git a/sos/plugins/internationalization.py b/sos/plugins/internationalization.py deleted file mode 100644 index 4ffaa4e4..00000000 --- a/sos/plugins/internationalization.py +++ /dev/null @@ -1,25 +0,0 @@ -### 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 Internationalization(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): - """i18n related information - """ - - plugin_name = 'internationalization' - - def setup(self): - self.add_copy_specs(["/etc/X11/xinit/xinput.d/*", "/etc/locale.conf"]) - self.add_cmd_output("locale") -- cgit