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

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