diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2011-08-12 09:15:00 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2011-08-12 09:15:00 +0100 |
commit | 3fc7dd30ff6d04d915409ba7c0d7c1e60d037c89 (patch) | |
tree | 341a9cca9942ff0a8d37cbc1e5356ec7cfd31e43 | |
parent | 59daffa949beec7b8f091985dc0916567159d5fc (diff) | |
download | sos-3fc7dd30ff6d04d915409ba7c0d7c1e60d037c89.tar.gz |
Fix autofs plugin LC_ALL usage
Resolves: bz683404
-rw-r--r-- | sos/plugins/autofs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/autofs.py b/sos/plugins/autofs.py index f3db92a1..2536bfc7 100644 --- a/sos/plugins/autofs.py +++ b/sos/plugins/autofs.py @@ -54,7 +54,7 @@ class autofs(sos.plugintools.PluginBase): self.collectExtOutput("ps auxwww | grep automount") self.collectExtOutput("/bin/egrep -e 'automount|pid.*nfs' /proc/mounts") self.collectExtOutput("/bin/mount | egrep -e 'automount|pid.*nfs'") - self.collectExtOutput("LC_ALL=C /sbin/chkconfig --list autofs") + self.collectExtOutput("/sbin/chkconfig --list autofs") if self.checkdebug(): self.addCopySpec(self.getdaemondebug()) return |