diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2015-05-31 14:31:58 +0200 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2015-09-30 13:42:13 -0400 |
commit | b6e1852d7178ed254caca5ef90657ed879aca3e0 (patch) | |
tree | 7873fa41d64c416b4dce9d7c92c43f3f3ccfbed5 | |
parent | c607cac7256ced5d1396ae61591f9eae4a9d385f (diff) | |
download | sos-b6e1852d7178ed254caca5ef90657ed879aca3e0.tar.gz |
[boot] Collect efibootmgr output
Resolves #551
Closes #568
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r-- | sos/plugins/boot.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/plugins/boot.py b/sos/plugins/boot.py index 8acf571f..68cb3c7e 100644 --- a/sos/plugins/boot.py +++ b/sos/plugins/boot.py @@ -40,6 +40,9 @@ class Boot(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "ls -lanR /boot", "lsinitrd" ]) + + self.add_cmd_output("efibootmgr") + if self.get_option("all-images"): for image in glob('/boot/initr*.img'): if image[-9:] == "kdump.img": |