Blame SOURCES/sos-bz1781819-dnf-module-list.patch

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