From 9c6f3f480814f50bea09507a0b3de32645e29820 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Fri, 22 Mar 2024 13:41:44 -0400 Subject: [PATCH] FIX: Specify that static IP address is recommended #12643 --- setup/so-whiptail | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/so-whiptail b/setup/so-whiptail index ff8c9fe8d..904654c9b 100755 --- a/setup/so-whiptail +++ b/setup/so-whiptail @@ -288,9 +288,9 @@ whiptail_dhcp_or_static() { [ -n "$TESTING" ] && return address_type=$(whiptail --title "$whiptail_title" --menu \ - "Choose how to set up your management interface:" 20 78 4 \ - "STATIC" "Set a static IPv4 address" \ - "DHCP" "Use DHCP to configure the Management Interface" 3>&1 1>&2 2>&3 ) + "Choose how to set up your management interface. We recommend using a static IP address." 20 78 4 \ + "STATIC" "Set a static IPv4 address (recommended)" \ + "DHCP" "Use DHCP to configure the management interface" 3>&1 1>&2 2>&3 ) local exitstatus=$? whiptail_check_exitstatus $exitstatus