From 04d2b523060d340c6031ae3f09bca0c1d73affd7 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Tue, 9 Nov 2021 14:03:32 -0500 Subject: [PATCH] Fix IP route whiptail error --- setup/so-functions | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup/so-functions b/setup/so-functions index a9925c80d..582f66e1f 100755 --- a/setup/so-functions +++ b/setup/so-functions @@ -933,10 +933,11 @@ compare_main_nic_ip() { read -r -d '' message <<- EOM The IP being routed by Linux is not the IP address assigned to the management interface ($MNIC). - This is not a supported configuration, please remediate and rerun setup. + This is not a supported configuration, please remediate + and rerun setup. EOM - [[ -n $TESTING ]] || whiptail --title "$whiptail_title" --msgbox "$message" 10 75 + [[ -n $TESTING ]] || whiptail --title "$whiptail_title" --msgbox "$message" 11 75 kill -SIGINT "$(ps --pid $$ -oppid=)"; exit 1 fi else