diff options
author | Bryan Quigley <bryan.quigley@canonical.com> | 2017-11-28 23:05:46 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-04-16 16:15:41 +0100 |
commit | a7203c46dc5c344ea480d89c45f4810ff26378c5 (patch) | |
tree | 4d0e3222019171a28523700308027a43beb68911 | |
parent | e4c0ac55b7af5ae75e96f123903ad3b536322624 (diff) | |
download | sos-a7203c46dc5c344ea480d89c45f4810ff26378c5.tar.gz |
[boot] Add Debian/Ubuntu package names
Resolves: #1157
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.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 79ac2012..e20674cd 100644 --- a/sos/plugins/boot.py +++ b/sos/plugins/boot.py @@ -22,7 +22,7 @@ class Boot(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): plugin_name = 'boot' profiles = ('system', 'boot') - packages = ('grub', 'grub2', 'zipl') + packages = ('grub', 'grub2', 'grub-common', 'grub2-common', 'zipl') option_list = [ ("all-images", "collect lsinitrd for all images", "slow", False) |