From bbbddf106afd4b91cbe18b51a7b9c20bf1f565f1 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Tue, 2 May 2023 09:15:48 +0200 Subject: [networkmanager] collect all fields of connections By default "nmcli con" only shows few fields of connections; many others are skipped and some of them are quite important like the filename, the autoconnect flag, and the last activation timestamp. Add the full dump of connection fields. Since the output can be harder to quickly parse, also leave the plain "nmcli con" output. Signed-off-by: Beniamino Galvani --- sos/report/plugins/networkmanager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sos/report/plugins/networkmanager.py b/sos/report/plugins/networkmanager.py index ed16768d..6446f4f3 100644 --- a/sos/report/plugins/networkmanager.py +++ b/sos/report/plugins/networkmanager.py @@ -53,6 +53,7 @@ class NetworkManager(Plugin, RedHatPlugin, UbuntuPlugin): self.add_cmd_output([ "nmcli general status", "nmcli con", + "nmcli -f all con", "nmcli con show --active", "nmcli dev"]) nmcli_con_details_cmd = nmcli_con_details_template % "show" -- cgit