From 673787cbdab4a47b0b3cb987866c57704d7bdee9 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 23 Aug 1999 13:01:55 +0000 Subject: no_comment --- perl-install/install_steps_stdio.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install/install_steps_stdio.pm') diff --git a/perl-install/install_steps_stdio.pm b/perl-install/install_steps_stdio.pm index f5b05a0f1..8122c3ba2 100644 --- a/perl-install/install_steps_stdio.pm +++ b/perl-install/install_steps_stdio.pm @@ -18,7 +18,7 @@ use log; sub enteringStep($$$) { my ($o, $step) = @_; - print _("Starting step `%s'\n", $o->{steps}->{$step}->{text}); + print _("Starting step `%s'\n", $o->{steps}{$step}{text}); } sub leavingStep { my ($o) = @_; @@ -50,7 +50,7 @@ sub setRootPassword($) { print "Password (again for confirmation): "; } until ($w{password} eq $o->readln()); - $o->{default}->{rootPassword} = $w{password}; + $o->{default}{rootPassword} = $w{password}; $o->SUPER::setRootPassword; } @@ -68,6 +68,6 @@ sub addUser($) { $w{shell} = $o->ask_from_list('', 'Shell', [ install_any::shells($o) ], "/bin/bash"); - $o->{default}->{user} = { map { $_ => $w{$_}->get_text } qw(name password realname shell) }; + $o->{default}{user} = { map { $_ => $w{$_}->get_text } qw(name password realname shell) }; $o->SUPER::addUser; } -- cgit v1.2.1