diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-12-06 21:30:13 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-12-06 21:30:13 +0000 |
commit | 3cf7f797e2efc150609b6506325605efbc41b2e7 (patch) | |
tree | e6b670c1c8fc39f11249a64e2b894c4891aa0826 | |
parent | 6c6bb99cb7bdab2536f88e25933c3c6c54774ab9 (diff) | |
download | sos-3cf7f797e2efc150609b6506325605efbc41b2e7.tar.gz |
Add /etc/locale.conf to i18n module
-rw-r--r-- | sos/plugins/i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/i18n.py b/sos/plugins/i18n.py index fb87f98c..d323a970 100644 --- a/sos/plugins/i18n.py +++ b/sos/plugins/i18n.py @@ -18,5 +18,5 @@ class i18n(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """i18n related information """ def setup(self): - self.addCopySpec("/etc/X11/xinit/xinput.d/*") + self.addCopySpec(["/etc/X11/xinit/xinput.d/*", "/etc/locale.conf"]) self.collectExtOutput("/usr/bin/locale") |