From 987eeb019b59ead84ac25aed8a5eabb269e6eb35 Mon Sep 17 00:00:00 2001 From: Jonathon Anderson Date: Tue, 27 May 2025 14:11:41 -0600 Subject: [PATCH] Fixed IPMI VLAN configuration - Closed: #1892 Signed-off-by: Jonathon Anderson --- CHANGELOG.md | 1 + overlays/wwinit/rootfs/warewulf/init.d/50-ipmi | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 726d0cfd..b0cf535a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Fixed `wwctl profile set` for disks, partitions and file systems. #1883 - Do not let API add a node that exists - Fixed sleep/rebooting on error during GRUB boot. #1894 +- Fixed IPMI VLAN configuration. #1892 ### Changed diff --git a/overlays/wwinit/rootfs/warewulf/init.d/50-ipmi b/overlays/wwinit/rootfs/warewulf/init.d/50-ipmi index 9451bcc2..8ee24998 100755 --- a/overlays/wwinit/rootfs/warewulf/init.d/50-ipmi +++ b/overlays/wwinit/rootfs/warewulf/init.d/50-ipmi @@ -38,7 +38,7 @@ if [ -n "$WWIPMI_VLAN" ]; then echo "IPMI VLAN: $WWIPMI_VLAN" else echo "IPMI VLAN: $prev_vlan -> $WWIPMI_VLAN" - echo ipmitool lan set 1 vlan id "$WWIPMI_VLAN" + ipmitool lan set 1 vlan id "$WWIPMI_VLAN" fi fi