From a880de262625c6d097877f6f42b238f6f3753e12 Mon Sep 17 00:00:00 2001 From: Stephen Simpson Date: Thu, 3 Apr 2025 13:29:35 -0500 Subject: [PATCH] Updated Warewulf SOS Plugin Modify the `wwctl container list` command to use -l to gather more information. Signed-off-by: Stephen Simpson Signed-off-by: Jonathon Anderson --- CHANGELOG.md | 4 ++++ include/sos/warewulf.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c23998..51c8311f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Updated 70-persistent-net.rules.ww to use `(lower $netdev.Type)` for case-insensitive comparison of "infiniband". - Fixed a regression in SELinux support by restoring the `/run` mount during wwinit. #1910 +### Changed + +- Added `-l` flag to `wwctl image list` within the sos plugin for better reporting. #1855 + ### Removed - Removed the gRPC API servers and client. #1876 diff --git a/include/sos/warewulf.py b/include/sos/warewulf.py index 6a8c80c0..4becdd2c 100644 --- a/include/sos/warewulf.py +++ b/include/sos/warewulf.py @@ -29,7 +29,7 @@ class Warewulf(Plugin, IndependentPlugin): self.add_cmd_output([ "wwctl node list", "wwctl node list -a", - "wwctl container list", + "wwctl image list -l", "wwctl profile list", "wwctl profile list -a", "wwctl image kernels",