aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2012-11-29 18:11:34 +0000
committerBryn M. Reeves <bmr@redhat.com>2012-11-29 18:11:34 +0000
commit352344e48b96059675b417354f9b68ddcd453857 (patch)
tree60ed18afd24d7b8c2d4c802b9c1c6855fe7cb962
parentb20ea3ae547e80e84f7cdfa1977074baafd05d61 (diff)
downloadsos-352344e48b96059675b417354f9b68ddcd453857.tar.gz
Fix collection of chkconfig output in startup module
Remove "LC_ALL=C" from invocation ofchkconfig --list.
-rw-r--r--sos/plugins/startup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/startup.py b/sos/plugins/startup.py
index eafca6d9..a0b317ab 100644
--- a/sos/plugins/startup.py
+++ b/sos/plugins/startup.py
@@ -22,7 +22,7 @@ class startup(Plugin, RedHatPlugin):
def setup(self):
self.addCopySpec("/etc/rc.d")
- self.collectExtOutput("LC_ALL=C /sbin/chkconfig --list", root_symlink = "chkconfig")
+ self.collectExtOutput("/sbin/chkconfig --list", root_symlink = "chkconfig")
if self.getOption('servicestatus'):
self.collectExtOutput("/sbin/service --status-all")
self.collectExtOutput("/sbin/runlevel")