diff options
author | Thiago Rafael Becker <thiago.becker@gmail.com> | 2017-09-02 13:52:48 -0300 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-10-27 14:24:53 +0100 |
commit | e97bf7bc7e0ffe8c96429843f46f9c0436c34c95 (patch) | |
tree | fdeff166daec53f3f57ada85b909f6bb779c0bb0 | |
parent | 6cf81bed12f119c580f9d3a0231aa46b2b165929 (diff) | |
download | sos-e97bf7bc7e0ffe8c96429843f46f9c0436c34c95.tar.gz |
[autofs] Pull autofs maps
Add `automount -m` output, as it is useful when debugging
autofs issues.
Fixes: #1089
Signed-off-by: Thiago Rafael Becker <thiago.becker@gmail.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/autofs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/autofs.py b/sos/plugins/autofs.py index 31f1809d..3cb83673 100644 --- a/sos/plugins/autofs.py +++ b/sos/plugins/autofs.py @@ -50,6 +50,7 @@ class Autofs(Plugin): def setup(self): self.add_copy_spec("/etc/auto*") self.add_cmd_output("/etc/init.d/autofs status") + self.add_cmd_output("automount -m") if self.checkdebug(): self.add_copy_spec(self.getdaemondebug()) |