diff options
-rw-r--r-- | sos/plugins/tftpserver.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sos/plugins/tftpserver.py b/sos/plugins/tftpserver.py index 87f2901d..04287612 100644 --- a/sos/plugins/tftpserver.py +++ b/sos/plugins/tftpserver.py @@ -8,10 +8,10 @@ # # See the LICENSE file in the source distribution for further information. -from sos.plugins import Plugin, RedHatPlugin +from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin -class TftpServer(Plugin, RedHatPlugin): +class TftpServer(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """TFTP server """ @@ -23,5 +23,7 @@ class TftpServer(Plugin, RedHatPlugin): def setup(self): self.add_cmd_output("ls -lanR /tftpboot") + self.add_cmd_output('ls -lanR /srv/tftp') + # vim: set et ts=4 sw=4 : |