30 lines
917 B
Diff
30 lines
917 B
Diff
From ba546077c0e4835b8087eacc75da0c4d475bade2 Mon Sep 17 00:00:00 2001
|
|
From: Jake Hunsaker <jhunsake@redhat.com>
|
|
Date: Tue, 10 Dec 2019 11:06:03 -0500
|
|
Subject: [PATCH 2/2] [dnf] Collect dnf module list
|
|
|
|
Adds collection of `dnf module list` to the plugin, to show a list of
|
|
all modules available to the system, instead of just those that are
|
|
currently installed.
|
|
|
|
Related: RHBZ#1781819
|
|
Resolves: #1887
|
|
|
|
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
---
|
|
sos/plugins/dnf.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/sos/plugins/dnf.py b/sos/plugins/dnf.py
|
|
index 754ca26ab..1bc01a985 100644
|
|
--- a/sos/plugins/dnf.py
|
|
+++ b/sos/plugins/dnf.py
|
|
@@ -49,6 +49,7 @@ def setup(self):
|
|
"dnf --version",
|
|
"dnf list installed *dnf*",
|
|
"dnf list extras",
|
|
+ "dnf module list",
|
|
"package-cleanup --dupes",
|
|
"package-cleanup --problems"
|
|
])
|