summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-11-30 15:29:47 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-11-30 15:29:47 +0000
commit013de3b04fc467137a0fea07f0ca0f2e00fecc11 (patch)
treeb1abb45e863b160bacc3ecfe87b0b10e61268c1b /perl-install/install_steps.pm
parentb8d631a3146e54954192547eda38ca6a14dd6d38 (diff)
downloaddrakx-backup-do-not-use-013de3b04fc467137a0fea07f0ca0f2e00fecc11.tar
drakx-backup-do-not-use-013de3b04fc467137a0fea07f0ca0f2e00fecc11.tar.gz
drakx-backup-do-not-use-013de3b04fc467137a0fea07f0ca0f2e00fecc11.tar.bz2
drakx-backup-do-not-use-013de3b04fc467137a0fea07f0ca0f2e00fecc11.tar.xz
drakx-backup-do-not-use-013de3b04fc467137a0fea07f0ca0f2e00fecc11.zip
backport HEAD changes used by finish-install
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index d6467efea..b27a56382 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -759,7 +759,8 @@ sub configurePrinter {
sub setRootPassword {
my ($o) = @_;
$o->{superuser} ||= {};
- any::set_root_passwd($o->{superuser}, $o->{authentication});
+ require authentication;
+ authentication::set_root_passwd($o->{superuser}, $o->{authentication});
install_any::set_authentication($o);
}