summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_stdio.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_stdio.pm')
-rw-r--r--perl-install/install_steps_stdio.pm6
1 files changed, 3 insertions, 3 deletions
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;
}