summaryrefslogtreecommitdiffstats
path: root/isolinux-graphic.bmp
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-23 11:50:21 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-23 11:50:21 +0000
commit8795d55cd84ac2b1d94af7d2cce1efc7ef339e25 (patch)
tree0efed0a45f71536e4d4726ca23c1213085873353 /isolinux-graphic.bmp
parent677f63e327af8a318f8094f0aa017138f69bf889 (diff)
downloaddrakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar
drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.gz
drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.bz2
drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.xz
drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.zip
fix "screen1 RightOf screen2", it must be "screen2 RightOf screen1"
Diffstat (limited to 'isolinux-graphic.bmp')
0 files changed, 0 insertions, 0 deletions
div class='head'>diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 9216891c2..740eace89 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -1262,8 +1262,8 @@ N("Last but not least you can also type in your DNS server IP addresses."),
help => N("By default search domain will be set from the fully-qualified host name") },
{ label => N("Gateway (e.g. %s)", $gateway_ex), val => \$netc->{GATEWAY} },
if_(@all_cards > 1,
- { label => N("Gateway device"), val => \$netc->{GATEWAYDEV}, list => [ sort keys %all_eth_intf ],
- format => sub { $all_eth_intf{$_[0]} } },
+ { label => N("Gateway device"), val => \$netc->{GATEWAYDEV}, list => [ N("None"), sort keys %all_eth_intf ],
+ format => sub { $all_eth_intf{$_[0]} || $_[0] } },
),
),
];
@@ -1280,8 +1280,10 @@ N("Last but not least you can also type in your DNS server IP addresses."),
return 1;
}
},
- #post => $handle_multiple_cnx,
- next => "zeroconf",
+ post => sub {
+ $netc->{GATEWAYDEV} eq N("None") and delete $netc->{GATEWAYDEV};
+ return "zeroconf";
+ }
},