diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-10-22 10:37:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-10-22 10:37:37 +0000 |
commit | cc40d0b56dba6d1af838a86d4fbbb14ac90ef97f (patch) | |
tree | c74c75b8a1794605816ab2c2650b4fd5ae655b35 /perl-install/install2.pm | |
parent | 21ec7acaaa990d72f79771535985e3c33f17069c (diff) | |
download | drakx-backup-do-not-use-cc40d0b56dba6d1af838a86d4fbbb14ac90ef97f.tar drakx-backup-do-not-use-cc40d0b56dba6d1af838a86d4fbbb14ac90ef97f.tar.gz drakx-backup-do-not-use-cc40d0b56dba6d1af838a86d4fbbb14ac90ef97f.tar.bz2 drakx-backup-do-not-use-cc40d0b56dba6d1af838a86d4fbbb14ac90ef97f.tar.xz drakx-backup-do-not-use-cc40d0b56dba6d1af838a86d4fbbb14ac90ef97f.zip |
no_comment
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index e789293b6..dbd447232 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -63,6 +63,7 @@ my (%installSteps, %upgradeSteps, @orderedInstallSteps, @orderedUpgradeSteps); for (my $i = 0; $i < @installSteps; $i += 2) { my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] }; $h{help} = $help::steps{$installSteps[$i]} || __("Help"); + $h{previous}= $installSteps[$i - 2] if $i >= 2; $h{next} = $installSteps[$i + 2]; $h{entered} = 0; $h{onError} = $installSteps[$i + 2 * $h{onError}]; @@ -379,6 +380,7 @@ sub addUser { $o->addUser; addToBeDone { + install_any::enableMD5($o->{prefix}); run_program::rooted($o->{prefix}, "pwconv") or log::l("pwconv failed"); #- use shadow passwords } 'doInstallStep'; } |