diff options
-rw-r--r-- | perl-install/network/ethernet.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 72c512d50..0f9a551fb 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -171,6 +171,7 @@ sub configureNetwork { } $last or return; + configureNetwork_step_2: if ($last->{BOOTPROTO} !~ /static/) { $netc->{minus_one} = 1; @@ -192,7 +193,7 @@ want to use the default host name."), } else { configureNetworkNet($in, $netc, $last ||= {}, @l) or goto configureNetwork_step_1; } - network::network::miscellaneous_choose($in, $::o->{miscellaneous} ||= {}) or goto configureNetwork_step_1; + network::network::miscellaneous_choose($in, $::o->{miscellaneous} ||= {}) or goto configureNetwork_step_2; 1; } |