diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-30 11:35:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-30 11:35:00 +0000 |
commit | a5a0520e0bfca8ab6be9fa83dd453c9a4e8c94c5 (patch) | |
tree | 23ca265db4ca4c3299c2812f685302445040032b /perl-install/install_steps.pm | |
parent | b6d2621f3a4a327d23d5a16247df839fca62dfec (diff) | |
download | drakx-a5a0520e0bfca8ab6be9fa83dd453c9a4e8c94c5.tar drakx-a5a0520e0bfca8ab6be9fa83dd453c9a4e8c94c5.tar.gz drakx-a5a0520e0bfca8ab6be9fa83dd453c9a4e8c94c5.tar.bz2 drakx-a5a0520e0bfca8ab6be9fa83dd453c9a4e8c94c5.tar.xz drakx-a5a0520e0bfca8ab6be9fa83dd453c9a4e8c94c5.zip |
- move some functions from any.pm to authentication.pm
- create authentication::ask_root_password_and_authentication() out of install_steps_interactive::setRootPassword()
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index f7c911d1f..104c8bd19 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); } |