From 1e341d941aef1fb617be2cd4177c6a16f1787646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Ferr=C3=A3o?= <2031761+viniciusferrao@users.noreply.github.com> Date: Thu, 7 May 2026 03:02:07 -0300 Subject: [PATCH] fix: typo in confignetwork preventing SETINSTALLNIC from working bool_install_nic on line 99 should be boot_install_nic, matching the variable used everywhere else in the script. This caused the SETINSTALLNIC environment variable to have no effect. Fixes: xcat2/xcat-core#7472 --- xCAT/postscripts/confignetwork | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT/postscripts/confignetwork b/xCAT/postscripts/confignetwork index 1eb953edf..cc97316d9 100755 --- a/xCAT/postscripts/confignetwork +++ b/xCAT/postscripts/confignetwork @@ -96,7 +96,7 @@ do fi done if [ "$SETINSTALLNIC" = "1" ] || [ "$SETINSTALLNIC" = "yes" ]; then - bool_install_nic=1 + boot_install_nic=1 fi ######################################################################