summaryrefslogtreecommitdiffstats
path: root/perl-install/network.pm
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2001-02-13 15:26:22 +0000
committerdamien <damien@mandriva.com>2001-02-13 15:26:22 +0000
commit32c56fb39d33da6c0fbe0128224150f2325eab9b (patch)
tree5b940671da5f7629fdc787a95e7fe36bffe2a560 /perl-install/network.pm
parente6753ef16e759aa1ef0095aad84a2d72046c2caf (diff)
downloaddrakx-32c56fb39d33da6c0fbe0128224150f2325eab9b.tar
drakx-32c56fb39d33da6c0fbe0128224150f2325eab9b.tar.gz
drakx-32c56fb39d33da6c0fbe0128224150f2325eab9b.tar.bz2
drakx-32c56fb39d33da6c0fbe0128224150f2325eab9b.tar.xz
drakx-32c56fb39d33da6c0fbe0128224150f2325eab9b.zip
corrected domainname setting
Diffstat (limited to 'perl-install/network.pm')
-rw-r--r--perl-install/network.pm14
1 files changed, 9 insertions, 5 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm
index 949dd31c4..45ddb7d5b 100644
--- a/perl-install/network.pm
+++ b/perl-install/network.pm
@@ -70,7 +70,11 @@ sub write_conf {
FORWARD_IPV4 => "false",
HOSTNAME => "localhost.localdomain",
});
- add2hash($netc, { DOMAINNAME => $netc->{HOSTNAME} =~ /\.(.*)/ });
+ print "-------------------\nDOMAINNAME : $netc->{DOMAINNAME}\n-------------------\n";
+ ($netc->{DOMAINNAME}) = ($netc->{HOSTNAME} =~ /\.(.*)/);
+
+ print "------------------\nHOSTNAME : $netc->{HOSTNAME}\n-------------------\n";
+ print "-------------------\nDOMAINNAME : $netc->{DOMAINNAME}\n-------------------\n";
setVarsInSh($file, $netc, qw(NETWORKING FORWARD_IPV4 DHCP_HOSTNAME HOSTNAME DOMAINNAME GATEWAY GATEWAYDEV NISDOMAIN));
}
@@ -320,8 +324,8 @@ notation (for example, 1.2.3.4).");
$text,
[ { label => _("IP address"), val => \$intf->{IPADDR} },
{ label => _("Netmask"), val => \$intf->{NETMASK} },
- { label => _("Automatic IP"), val => \$pump, type => "bool", text => _("(bootp/dhcp)") }
- member($module, @wireless_modules) ?
+ { label => _("Automatic IP"), val => \$pump, type => "bool", text => _("(bootp/dhcp)") },
+ if_(member($module, @wireless_modules),
{ label => "WIRELESS_MODE", val => \$intf->{WIRELESS_MODE}, list => [ "Ad-hoc", "Managed", "Master", "Repeater", "Secondary", "Auto"] },
{ label => "WIRELESS_ESSID", val => \$intf->{WIRELESS_ESSID} },
{ label => "WIRELESS_NWID", val => \$intf->{WIRELESS_NWID} },
@@ -334,7 +338,7 @@ notation (for example, 1.2.3.4).");
{ label => "WIRELESS_IWCONFIG", val => \$intf->{WIRELESS_IWCONFIG} },
{ label => "WIRELESS_IWSPY", val => \$intf->{WIRELESS_IWSPY} },
{ label => "WIRELESS_IWPRIV", val => \$intf->{WIRELESS_IWPRIV} }
- : ()
+ ),
],
complete => sub {
$intf->{BOOTPROTO} = $pump ? "dhcp" : "static";
@@ -443,7 +447,7 @@ sub configureNetwork2 {
my ($prefix, $netc, $intf, $install) = @_;
my $etc = "$prefix/etc";
- $netc->{wireless_eth} and $install->('wireless-tools')
+ $netc->{wireless_eth} and $install->('wireless-tools');
write_conf("$etc/sysconfig/network", $netc);
write_resolv_conf("$etc/resolv.conf", $netc);
write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_) foreach values %$intf;