diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-09-13 12:10:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-09-13 12:10:14 +0000 |
commit | 9efb0e8733d7d48bc2ee3054e85f0d4827db49a9 (patch) | |
tree | 26fa0d95a72d7d9aa52ca27eafc6e2bc6be880ce /perl-install/install_steps.pm | |
parent | 3e7ac9af750f6c4968d38ea5e6717a4940db7dc2 (diff) | |
download | drakx-9efb0e8733d7d48bc2ee3054e85f0d4827db49a9.tar drakx-9efb0e8733d7d48bc2ee3054e85f0d4827db49a9.tar.gz drakx-9efb0e8733d7d48bc2ee3054e85f0d4827db49a9.tar.bz2 drakx-9efb0e8733d7d48bc2ee3054e85f0d4827db49a9.tar.xz drakx-9efb0e8733d7d48bc2ee3054e85f0d4827db49a9.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index cf3df79dc..584bf1fb3 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -163,16 +163,14 @@ sub mouseConfig($) { sub configureNetwork($) { my ($o) = @_; my $etc = "$o->{prefix}/etc"; -# -# rc = checkNetConfig(&$o->{intf}, &$o->{netc}, &$o->{intfFinal}, -# &$o->{netcFinal}, &$o->{driversLoaded}, $o->{direction}); + network::write_conf("$etc/sysconfig/network", $o->{netc}); network::write_resolv_conf("$etc/resolv.conf", $o->{netc}); network::write_interface_conf("$etc/sysconfig/network-scripts/ifcfg-$_->{DEVICE}", $_) foreach @{$o->{intf}}; network::add2hosts("$etc/hosts", $o->{netc}{HOSTNAME}, map { $_->{IPADDR} } @{$o->{intf}}); network::sethostname($o->{netc}) unless $::testing; network::addDefaultRoute($o->{netc}) unless $::testing; - #-res_init(); # reinit the resolver so DNS changes take affect + #-res_init(); #- reinit the resolver so DNS changes take affect } #------------------------------------------------------------------------------ @@ -180,7 +178,9 @@ sub timeConfig { my ($o, $f) = @_; my $t = $o->{timezone}; - setVarsInSh($f, { + eval { commands::cp("-f", "/usr/share/zoneinfo/$t->{timezone}", "/etc/localtime") }; + $@ and log::l("installing /etc/localtime failed"); + setVarsInSh($f, { ZONE => $t->{timezone}, GMT => bool2text($t->{GMT}), ARC => "false", |