diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-21 17:45:01 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-21 17:45:01 +0000 |
commit | 31558e6e9c5d12b1fc84b8c63ad2a8bfb2977816 (patch) | |
tree | 462c81753a0571bcc3b3cd6bfc71457e37debe53 | |
parent | 19c3dec89b9dd58ecee758d916939a3e7f657f3f (diff) | |
download | drakx-31558e6e9c5d12b1fc84b8c63ad2a8bfb2977816.tar drakx-31558e6e9c5d12b1fc84b8c63ad2a8bfb2977816.tar.gz drakx-31558e6e9c5d12b1fc84b8c63ad2a8bfb2977816.tar.bz2 drakx-31558e6e9c5d12b1fc84b8c63ad2a8bfb2977816.tar.xz drakx-31558e6e9c5d12b1fc84b8c63ad2a8bfb2977816.zip |
really use the same path in standalone and install mode
-rw-r--r-- | perl-install/network/netconnect.pm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 3fca5d4e3..6715a2719 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -177,14 +177,7 @@ sub get_subwizard { $connections{$string} = $type; } %rconnections = reverse %connections; - if ($::isInstall) { - @connection_list = map { - my (undef, undef, $type) = @$_; - +{ text => $rconnections{$type}, val => \$conf{$type}, type => 'bool' } - } @connections; - } else { - @connection_list = ({ val => \$cnx_type, type => 'list', list => [ map { $_->[0] } @connections ], }); - } + @connection_list = ({ val => \$cnx_type, type => 'list', list => [ map { $_->[0] } @connections ], }); }, if_(!$::isInstall, no_back => 1), name => N("Choose the connection you want to configure"), |