diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-06-03 13:24:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-06-03 13:24:34 +0000 |
commit | 2ccb592fc1dd28aa4c11be203a0f2b300743a726 (patch) | |
tree | e4445901c2864beee50b10b4ab045cc604beacf8 /perl-install/install_steps.pm | |
parent | 337801868e55146ca66221654d6295d0e24b01a7 (diff) | |
download | drakx-2ccb592fc1dd28aa4c11be203a0f2b300743a726.tar drakx-2ccb592fc1dd28aa4c11be203a0f2b300743a726.tar.gz drakx-2ccb592fc1dd28aa4c11be203a0f2b300743a726.tar.bz2 drakx-2ccb592fc1dd28aa4c11be203a0f2b300743a726.tar.xz drakx-2ccb592fc1dd28aa4c11be203a0f2b300743a726.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index c209b56e8..9e2486d70 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -308,8 +308,8 @@ sub installPackages($$) { #- complete REWORK, TODO and TOCHECK! my $time = time; $ENV{DURING_INSTALL} = 1; pkgs::install($o->{prefix}, $o->{isUpgrade}, \@toInstall, $packages->[1], $packages->[2]); - run_program::rooted($o->{prefix}, 'ldconfig'); delete $ENV{DURING_INSTALL}; + run_program::rooted($o->{prefix}, 'ldconfig') or die "ldconfig failed!"; log::l("Install took: ", formatTime(time - $time)); } @@ -338,14 +338,11 @@ Consoles 1,3,4,7 may also contain interesting information"; #- why not? cuz weather is nice today :-) [pixel] sync(); sync(); - #- call ldconfig at the end of package installation - run_program::rooted($o->{prefix}, "ldconfig"); - #- configure PCMCIA services if needed. $o->pcmciaConfig(); #- for mandrake_firstime - output "$o->{prefix}/var/lock/TMP_1ST", ""; + touch "$o->{prefix}/var/lock/TMP_1ST"; #- remove the nasty acon... run_program::rooted($o->{prefix}, "chkconfig", "--del", "acon") unless $ENV{LANGUAGE} =~ /ar/; |