From ea3096518ba796fe0eca9de7274caaecab8397cd Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:58 -0400 Subject: [PATCH] Fix bad escapes --- templates/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/install.sh b/templates/install.sh index cf477e3..19bccff 100755 --- a/templates/install.sh +++ b/templates/install.sh @@ -812,8 +812,8 @@ target_interface=\${1} pvcbootstrapd_checkin_uri="${pvcbootstrapd_checkin_uri}" macaddr=\$( ip -br link show \${target_interface} | awk '{ print \$3 }' ) ipaddr=\$( ip -br address show \${target_interface} | awk '{ print \$3 }' | awk -F '/' '{ print \$1 }' ) -bmc_macaddr=\$( ipmitool lan print | grep 'MAC Address ' | awk '{ print $NF }' ) -bmc_ipaddr=\$( ipmitool lan print | grep 'IP Address ' | awk '{ print $NF }' ) +bmc_macaddr=\$( ipmitool lan print | grep 'MAC Address ' | awk '{ print \$NF }' ) +bmc_ipaddr=\$( ipmitool lan print | grep 'IP Address ' | awk '{ print \$NF }' ) if [[ -f /etc/pvc-install.pvcbootstrapd_completed ]]; then # The third boot, when all pvcprovisionerd plugins have been run (this script will henceforth do nothing) action="system-boot_bootstrap-completed"