From f2b3a67045dd4ada502fd1c681a591210153cd79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 23 Sep 2025 10:04:40 +0000 Subject: [PATCH] fix typo --- pxe-boot/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pxe-boot/install.sh b/pxe-boot/install.sh index 42bcf7e..50b2fc7 100755 --- a/pxe-boot/install.sh +++ b/pxe-boot/install.sh @@ -60,13 +60,13 @@ function template_kickstart_files() { } # This function templates a single kickstart file. -# It takes two arguments: the path to the template file and the current scenario. +# It takes two arguments: the path to the template file and the bootc image. # It uses envsubst to replace placeholders with actual values. function template_kickstart_file () { local template="$1" local bootc_image="$2" local template_name="$(basename "$template" .ks)" - local output_file="$output_dir/${template_name}/${type}.ks" + local output_file="$output_dir/${template_name}/baremetal.ks" echo "Templating $template_name to $output_file" (