diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2018-03-01 13:15:18 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-09 14:46:57 +0100 |
commit | 8f6657f8a2bf04f249d771ec83543b918e03b8b2 (patch) | |
tree | 1be3f949adec9b01a362016a2eb18ee2940a4dd3 | |
parent | 8673e0eccdba9012d77ed339df4108cdd998c739 (diff) | |
download | sos-8f6657f8a2bf04f249d771ec83543b918e03b8b2.tar.gz |
[boot] Collect verbose efibootmgr
Makes collection of efibootmgr output verbose.
Resolves: #1231
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/boot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/boot.py b/sos/plugins/boot.py index e20674cd..bbf8d453 100644 --- a/sos/plugins/boot.py +++ b/sos/plugins/boot.py @@ -42,7 +42,7 @@ class Boot(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "lsinitrd" ]) - self.add_cmd_output("efibootmgr") + self.add_cmd_output("efibootmgr -v") if self.get_option("all-images"): for image in glob('/boot/initr*.img'): |