From fb31b56c8b25bf9dc512f02117844865946c6972 Mon Sep 17 00:00:00 2001 From: William Wernert Date: Tue, 12 Jan 2021 11:22:52 -0500 Subject: [PATCH] [fix] Only check for network init file if iso --- setup/so-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/so-setup b/setup/so-setup index 917273786..5707212c6 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -268,7 +268,7 @@ if ! [[ -f $install_opt_file ]]; then collect_mngr_hostname fi - if [[ $is_minion ]] || [[ $reinit_networking ]] || ! [[ -f $net_init_file ]]; then + if [[ $is_minion ]] || [[ $reinit_networking ]] || [[ $is_iso ]] && ! [[ -f $net_init_file ]]; then whiptail_management_interface_setup fi