diff options
-rw-r--r-- | sos/report/plugins/ata.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/report/plugins/ata.py b/sos/report/plugins/ata.py index 9063a845..6e1b7641 100644 --- a/sos/report/plugins/ata.py +++ b/sos/report/plugins/ata.py @@ -29,7 +29,8 @@ class Ata(Plugin, IndependentPlugin): disk_path = os.path.join(dev_path, disk) self.add_cmd_output([ "hdparm %s" % disk_path, - "smartctl -a %s" % disk_path + "smartctl -a %s" % disk_path, + "smartctl -l scterc %s" % disk_path, ]) |