summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakconnect
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-07-22 15:39:13 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-07-22 15:39:13 +0000
commit49a31d3a710b5f04f1e976e4ae0f774b1e690dfa (patch)
tree7c5636051ed207bf2e8eb9b92c86c8df8b11a2e0 /perl-install/standalone/drakconnect
parent1ab82398a0b65895d3c39cbf44cee40daa20683a (diff)
downloaddrakx-backup-do-not-use-49a31d3a710b5f04f1e976e4ae0f774b1e690dfa.tar
drakx-backup-do-not-use-49a31d3a710b5f04f1e976e4ae0f774b1e690dfa.tar.gz
drakx-backup-do-not-use-49a31d3a710b5f04f1e976e4ae0f774b1e690dfa.tar.bz2
drakx-backup-do-not-use-49a31d3a710b5f04f1e976e4ae0f774b1e690dfa.tar.xz
drakx-backup-do-not-use-49a31d3a710b5f04f1e976e4ae0f774b1e690dfa.zip
- fix "lan config" dialog where fields were not filled
- factorize some code in order to achieve it
Diffstat (limited to 'perl-install/standalone/drakconnect')
-rwxr-xr-xperl-install/standalone/drakconnect39
1 files changed, 27 insertions, 12 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect
index c1244a115..7cc6241d4 100755
--- a/perl-install/standalone/drakconnect
+++ b/perl-install/standalone/drakconnect
@@ -281,18 +281,31 @@ $::isWizard = 1;
network::netconnect::main('', $netcnx, $in);
$in->exit(0);
+sub get_int_ip {
+ my ($interface) = @_;
+ my ($ip, $state, $mask);
+ if (-x "/sbin/ifconfig") {
+ local $_ = `LC_ALL=C LANG=C LANGUAGE=C LC_MESSAGES=C /sbin/ifconfig $interface`;
+ $ip = /inet addr:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/mso ? $1 : N("Bad Ip");
+ $mask = /Mask:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/mso ? $1 : N("Bad Mask");
+ $_ = `LC_ALL=C LANG=C LANGUAGE=C LC_MESSAGES=C /sbin/ifconfig`;
+ $state = /$interface/ ? "up" : "down";
+ } else {
+ $ip = $intf->{$interface}{IPADDR};
+ $state = "n/a";
+ }
+ ($ip, $state, $mask);
+}
+
+sub get_eth_ip {
+ my ($interface_num) = @_;
+ get_int_ip("eth$interface_num");
+}
+
sub build_list() {
foreach my $i (0..$#all_cards) {
- my ($ip, $state);
- if (-x "/sbin/ifconfig") {
- local $_ = `LC_ALL=C LANG=C LANGUAGE=C LC_MESSAGES=C /sbin/ifconfig "eth$i"`;
- $ip = /inet addr:(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/o ? $1 : N("Bad Ip");
- $_ = `LC_ALL=C LANG=C LANGUAGE=C LC_MESSAGES=C /sbin/ifconfig`;
- $state = /eth$i/ ? "up" : "down";
- } else {
- $ip = $intf->{"eth$i"}{IPADDR};
- $state = "n/a";
- }
+ my ($ip, $state) = get_eth_ip($i);
+
$tree_model->append_set(undef, [ map_index { $::i => $_ } (gtkcreate_pixbuf("eth_card_mini2.png"), "eth$i", $ip , $intf->{"eth$i"}{BOOTPROTO}, $all_cards[$i][1], $state) ]);
}
}
@@ -402,8 +415,10 @@ Configure them first by clicking on 'Configure'")),1,1,0);
# Eth${_}Hostname = $netc->{HOSTNAME}
# Eth${_}HostAlias = " . do { $netc->{HOSTNAME} =~ /([^\.]*)\./; $1 } . "
# Eth${_}Driver = $all_cards[$_]->[1]
- @conf_data = ([N("IP address"), \$intf->{"eth$_"}{IPADDR}],
- [N("Netmask"), \$intf->{"eth$_"}{NETMASK}],
+ my ($ip, undef, $mask) = get_eth_ip($_);
+ $mask ||= $intf->{"eth$_"}{NETMASK};
+ @conf_data = ([N("IP address"), \$ip ],
+ [N("Netmask"), \$mask],
[N("Boot Protocol"), \$intf->{"eth$_"}{BOOTPROTO}, ["static", "dhcp", "bootp"]],
[N("Started on boot"), \$intf->{"eth$_"}{ONBOOT} , ["yes", "no"]],
[N("DHCP client"), \$netcnx->{dhcp_client}]