diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2011-02-24 09:05:00 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-01-16 21:12:21 +0000 |
commit | a8b0ba9d8b454418d1f2ed63c968db14c8d2747e (patch) | |
tree | 7d73dfc04c32cc41fea32f16e0dc86d7bb6baa62 | |
parent | d2cda1dd86b15eb373185c0104a4bfc8f0043ac0 (diff) | |
download | sos-a8b0ba9d8b454418d1f2ed63c968db14c8d2747e.tar.gz |
Fix collection of chkconfig output in startup.py
Resolves: bz659467
-rw-r--r-- | sos/plugins/startup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/startup.py b/sos/plugins/startup.py index c0cb139a..320bcd82 100644 --- a/sos/plugins/startup.py +++ b/sos/plugins/startup.py @@ -22,7 +22,7 @@ class startup(sos.plugintools.PluginBase): 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") |